{% extends "base" %} {% import "macros" as macros %} {% block title %} {{ "Notifications" | _ }} {% endblock title %} {% block content %}

{{ "Notifications" | _ }}

{% for notification in notifications %}

{{ notification.title | _(data=notification.data) }}

{% if notification.content %}

{{ notification.content }}

{% endif %}
{% endfor %}
{{ macros::paginate(page=page, total=n_pages) }} {% endblock content %}