{% extends "notification/base.html" %} {% load humanize %} {% load i18n %} {% load pagination_tags %} {% load timezone_filters %} {% block head_title %}{% trans "Notices" %}{% endblock %} {% block body %} {% autopaginate notices %} {% if notices %} {% trans "Mark all unseen notices seen" %} {# TODO: get timezone support working with regroup #} {% regroup notices by added.date as notices_by_date %} {% for date in notices_by_date %}
{% trans "No notices." %}
{% endif %} {% endblock %}