{% extends "base.html" %} {% block title %}Notifications{% endblock %} {% block page_title %}Notifications{% endblock %} {% block content %}
All Notifications
{% if notifs.items %} {% for n in notifs.items %}
{% if not n.is_read %}
{% else %} {% endif %}
{{ n.title }}
{% if n.message %}
{{ n.message[:120] }}
{% endif %}
{{ n.created_at.strftime('%b %d, %Y at %H:%M') }}
{% endfor %} {% if notifs.pages > 1 %}
{% endif %} {% else %}
No notifications yet.
{% endif %}
{% endblock %}