{% extends "base.html" %} {% load url from future %} {% load i18n %} {% block page_title %}{% endblock %} {% block extra_header %} {% endblock %} {% block content %}

{% trans "Notifications" %}

{% for notification in notifications %} {% endfor %}
{% trans "Date" %} {% trans "Sent" %} {% trans "Title" %} {% trans "Recipients" %}
{{ notification.creation_date }} {% if notification.sent %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %} {{ notification.subject }} {{ notification.all_recipients|length }}
{% endblock %}