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

Notification List

Create Notification
{% for notification in notifications %} {% empty %} {% endfor %}
ID Title Description Type Audience Start Date End Date Create At Update At Actions
{{ notification.id }} {{ notification.notification_title|capfirst }} {{ notification.notification_description|capfirst }} {{ notification.get_notification_type_display|capfirst }} {{ notification.get_target_audience_display|capfirst }} {{ notification.start_date|date:"M d, Y h:i A" }} {{ notification.end_date|date:"M d, Y h:i A" }} {{ notification.created_at|date:"M d, Y h:i A" }} {{ notification.updated_at|date:"M d, Y h:i A" }}
No notifications available
{% endblock content %}