{% extends 'admin/base.html' %} {% load static %} {% block title %}Detail Notifikasi - Admin Panel{% endblock %} {% block content %}
{{ notifikasi.id }}
{% if notifikasi.notification_type == 'success' %} Berhasil {% elif notifikasi.notification_type == 'warning' %} Peringatan {% elif notifikasi.notification_type == 'error' %} Error {% else %} Informasi {% endif %}
{{ notifikasi.title }}
{{ notifikasi.message }}
{% if notifikasi.is_read %} Sudah Dibaca {% else %} Belum Dibaca {% endif %}
{% if notifikasi.read_at %} {{ notifikasi.read_at|date:"d M Y H:i" }} {% else %} Belum dibaca {% endif %}
{{ notifikasi.created_at|date:"d M Y H:i" }}
{{ notifikasi.updated_at|date:"d M Y H:i" }}
{{ notifikasi.user.nim }}
{{ notifikasi.user.email }}
{{ notifikasi.user.no_telepon }}
{% if notifikasi.user.is_approved %} Approved {% else %} Pending {% endif %}
{{ notifikasi.user.tanggal_bergabung|date:"d M Y" }}