{% extends "users/settings_base.html" %} {% block title %} {{ _("Email and Notifications | %(username)s", username=user.username) }} {% endblock %} {% block pane %}

{{ _("Email and Notifications") }}

{% from "macros/forms.html" import render_field, render_submit_field, render_checkbox_field %}
{{ form.hidden_tag() }}

Email Address

{{ render_field(form.email, tabindex=100) }}

Your email is needed to recover your account if you forget your password, and to send (configurable) notifications. Your email will never be shared with a third-party.

Notification Settings

{% if is_new %}

{{ _("Email notifications are currently turned off. Click 'Save' to apply recommended settings.") }}

{% endif %} {% for type in types %} {% endfor %}
Event Description Emails?
{{ type.getTitle() }} {{ type.get_description() }} {{ render_checkbox_field(form["pref_" + type.toName()]) }}

{{ render_submit_field(form.submit, tabindex=280) }}

{% endblock %}