{% extends "base.html" %} {% block title %}Notifications — DUYS Boost{% endblock %} {% block page_title %}Notifications{% endblock %} {% block content %}
{% if notifications %}
{% for n in notifications %}
{{ n.message }}
{{ n.created_at[:16] }}
{% endfor %}
{% else %}
🔔
You're all caught up! No notifications.
{% endif %}
{% endblock %}