{% extends 'base.html' %} {% load static %} {% block title %} Notification {% endblock %} {% block css %} {% endblock %} {% block content %}
{% include 'driver_header.html' %}
{% include 'driver_sidebar.html' %}

All Notifications

{% csrf_token %}
{% if all_notifications %} {% for notification in all_notifications %} {% endfor %} {% endif %}
Serial No. Type Text Date Action
{{notification.serialno}} {{notification.notificationtype}} {{notification.notificationtext}} {{notification.date}} {% if 'message' in notification.notificationtext %} Check Message {% else %} Check Job {% endif %}
{% 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 'driver_footer.html' %} {% endblock %} {% block js %} {% endblock %}