{% extends "base.html" %} {% block content %}

{% trans %}Notifications{% endtrans %}

{% if not notifications %}

{% trans %}There are no notifications yet{% endtrans %}

{% endif %} {% for notification in notifications %}

{{ notification.title }}

{{ notification.html }}

{% endfor %}
{% endblock %} {% block scripts %} {{ Assets.js("assets/js/notifications.js") }} {% endblock %}