{% extends "admin/base.html" %} {% block logo %}

Notifications

{% endblock %} {% block main %}
Create Mass Notification
{% for notif in notifications %} {% else %} {% endfor %}
User Type Message Read Created
{{ notif.user_nick }} {{ notif.type }} {{ notif.message }} {% if notif.is_read %}Yes{% else %}No{% endif %} {{ notif.created_at }}
No notifications found
Showing {{ ((page - 1) * per_page) + 1 }}-{% if page * per_page < total %}{{ page * per_page }}{% else %}{{ total }}{% endif %} of {{ total }}
{% if page > 1 %} Previous {% endif %} Page {{ page }} of {{ ((total - 1) // per_page) + 1 }} {% if page * per_page < total %} Next {% endif %}
{% endblock main %}