{% extends 'base.html' %} {% load static %} {% block title %} Notification {% endblock %} {% block css %} {% endblock %} {% block content %}
{% include 'admin_header.html' %}
{% include 'admin_sidebar.html' %}
{% if all_notifications %} {% for notification in all_notifications %} {% endfor %} {% endif %}
Serial No. Type Text Date
{{notification.serialno}} {{notification.notificationtype}} {{notification.notificationtext}} {{notification.date}}
{% if all_notifications.has_other_pages %}
    {% if all_notifications.has_previous %}
  • «
  • {% else %}
  • «
  • {% endif %} {% for i in all_notifications.paginator.page_range %} {% if all_notifications.number == i %}
  • {{ i }} (current)
  • {% else %}
  • {{ i }}
  • {% endif %} {% endfor %} {% if all_notifications.has_next %}
  • »
  • {% else %}
  • »
  • {% endif %}
{% endif %}
{% include 'admin_footer.html' %} {% endblock %} {% block js %} {% endblock %}