{% extends "default.html" %} {% set active_page = "dashboard" %} {% block title %}Notifications{% endblock %} {% block default_content %}

Notifications

{% for notification in notifications %}
{{ notification.title or "" }}
{{ notification.message | safe }}
More ➡
{{ notification.created_at | dt }}
{% endfor %} {% if page > 0 or not last_page %} {% endif %}
{% endblock %}