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

Notifikasi

Kelola semua notifikasi sistem

{% if notifications %}
{% for notification in notifications %}
{% if notification.notification_type == 'info' %} {% elif notification.notification_type == 'success' %} {% elif notification.notification_type == 'warning' %} {% elif notification.notification_type == 'error' %} {% endif %}

{{ notification.title }}

{{ notification.message }}

{{ notification.created_at|date:"d M Y H:i" }}

{% if not notification.is_read %} {% endif %}
{% endfor %}
{% else %}

Tidak ada notifikasi

Semua notifikasi sudah dibaca atau belum ada notifikasi baru.

{% endif %}
{% endblock %}