{% extends "notification/base.html" %} {% load i18n %} {% load url from future %} {% block body_id %}notification-settings{% endblock %} {% block head_title %}{% trans "Notification Settings" %}{% endblock %} {% block body %}

{% trans "Notification Settings" %}

{% url "account_settings" as email_url %} {% if not request.user.email %} {% blocktrans %}

Note: You do not have a verified email address to which notices can be sent. Add one now.

{% endblocktrans %} {% endif %}
{% csrf_token %} {% for header in notice_settings.column_headers %} {% endfor %} {% for row in notice_settings.rows %} {% for cell in row.cells %} {% endfor %} {% endfor %}
{% trans "Notification Type" %} {{ header.title }}
{{ row.notice_type.display }}
{{ row.notice_type.description }}
{% endblock %}