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

Notifications

{% if notifications %} Mark all as read {% endif %}
{% for n in notifications %}
{% if not n.is_read %} {% else %} {% endif %}

{{ n.message }}

{{ n.created_at|date:"M d, Y H:i" }}
{% if not n.is_read %} Mark {% endif %} Delete
{% empty %}

No notifications yet.

{% endfor %}
{% endblock %}