{% extends "notification/base.html" %} {% load humanize %} {% load bootstrap_pagination_tags %} {% block title %}{% trans "Notifications" %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% trans "Notifications" %}

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

{% trans "Primary email" %}: {{ user.email }} ({% trans 'change' %})

{% else %}

{% trans "Note" %}: {% 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 %} {# doubt this easy to do in uni-form #} {% 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 %}