{% extends 'admin/base.html' %} {% load static %} {% block title %}Detail Notifikasi - Admin Panel{% endblock %} {% block content %}

Detail Notifikasi

Informasi lengkap notifikasi

Informasi Notifikasi

{{ 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" }}

Informasi Anggota

{% if notifikasi.user.foto_profil %} Foto Profil {% else %}
{% endif %}

{{ notifikasi.user.nama_lengkap }}

{{ 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" }}

{% if notifikasi.user and notifikasi.user.id %} Lihat Profil {% endif %}
{% endblock %}