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

{% trans "Settings" %}

{% url acct_email as email_url %} {% if user.email %}

{% trans "Primary email" %}:
{{ user.email }}
({% blocktrans %}change under Account{% endblocktrans %})

{% else %}
{% blocktrans %} You do not have a verified email address to which notices can be sent. You can add one by going to Account. {% 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 }}
{% trans row.notice_type.display %}
{% trans row.notice_type.description %}
{% endblock %}