{% extends "base.html" %}{% block content %}

Notifications

Management notices and system updates
{% csrf_token %}
{% for n in notifications %}{% empty %}{% endfor %}
DateTitleMessageStatus
{{ n.created_at|date:"Y-m-d H:i" }}{{ n.title }}{{ n.message }}{% if n.read_at %}Read{% else %}New{% endif %}
No notifications.
{% endblock %}