{% extends "admin/dashboard.html" %} {% load static %} {% block title %} Admin | Notification List {% endblock title %} {% block content %}

All Notifications

Send Notification
{% for notification in notifications %} {% empty %} {% endfor %}
ID Title Target Audience Status Created At Action
{{ notification.id }}
{% if notification.image %} Notification Image {% else %} No Image {% endif %}

{{ notification.title }}

{{ notification.target_audience }} {% if notification.is_active %} Active {% else %} Inactive {% endif %} {{ notification.created_at|date:"d M Y H:i" }}
No notifications available
{% endblock content %}