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

{{ "Notifications" | _ }}

{% for notification in notifications %}

{{ notification.title | _ }}

{% if notification.content %}

{{ notification.content }}

{% endif %}
{% endfor %}
{% endblock content %}