{% extends "notification/base.html" %} {% load humanize i18n %} {% load custom_date %} {% block title %} {% trans "Notifications "%} - {{ block.super }} {% endblock %} {% block notifications %}class="active"{% endblock %} {% block content_header %}

{% trans "Notification Settings" %} {{ profile.user }}

{% endblock %} {% block content_main %}

{% trans "Settings" %}

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

{% trans "Primary email" %}: {{ user.email }}
(You can change this in your profile settings.)

{% else %}

You do not have a verified email address to which notifications can be sent. You can add one by editing your profile.

{% endif %}
{% for app, settings in app_tables.items %}

{{ app|capfirst }}

{% for header in column_headers %} {% endfor %} {% for setting in settings %} {% endfor %}
{% trans "Notification Type" %}{{ header }}
{% trans setting.notice_type.display %}
{% trans setting.notice_type.description %}
{% for html_value in setting.html_values %} {% endfor %}

{% endfor %} {% csrf_token %}
{% endblock %}