{% extends "pinax/notifications/base.html" %} {% load i18n %} {% load user_messages %} {% 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 %} {% show_notification row.notice_type.label request.user as notice_enabled %} {% for cell in row.cells %} {% endfor %} {% endfor %}
{% trans "Notification Type" %} {% trans header.title %}
{% trans row.notice_type.display %}
{% trans row.notice_type.description %}
{% endblock %}