{% extends "notification/base.html" %} {% load i18n %} {% block title %}{% trans "Notices" %}{% endblock %} {% block extra_css %} {% endblock %} {% block doccontent %}

Notices

{% trans "Change Settings" %}
{% if unseen_count > 0 %}
{% trans "Mark all notices seen" %}
{% endif %}

{% if unseen_count > 0 %} {% for notice in notices %} {% if notice.unseen %} {% comment %} Note: do not call is_unseen because it will mark the notification as seen, and we're leaving that up to the user. {% endcomment %}
{{ notice.message|safe }}
{% endif %} {% endfor %} {% else %}

{% trans "You have no unseen notices." %}

{% endif %} {% endblock %}