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

Notifications

{% for n in items %}
{{ n.title }}
{{ n.created_at.strftime('%d %b %Y') }}
{{ n.message }}
{% if not n.is_read %}unread{% endif %}
{% else %}
No notifications.
{% endfor %}
{% if pagination.pages > 1 %} {% endif %}
{% endblock %}