{% extends 'dj_backup/base/base_template.html' %} {% block Title %} Notification list {% endblock %} {% block BodyClass %} has-rtl nk-body npc-apps apps-only has-apps-sidebar npc-apps-files {% endblock %} {% block Content %}
{% include 'dj_backup/base/header.html' %}
{% include 'dj_backup/base/menu-aside.html' %}

Notification list

See All
{% for notification in object_list %} {% empty %} {% endfor %}
level detail creation date creation date visit status action
{{ notification.level }}
{{ notification.get_created_at }}
{% if notification.is_seen %} seen {% else %} unseen {% endif %}
No results found {% if request.GET.search %} clear filter {% endif %}
    {% if page_obj.has_previous %}
  • first
  • previous
  • {% endif %} page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}. {% if page_obj.has_next %}
  • next
  • last
  • {% endif %}
{% endblock %}