{% extends "sentry/bases/account.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "Notification Settings" %} | {{ block.super }}{% endblock %} {% block main %} {% if request.user.has_unverified_emails %}
{% trans "You have unverified emails. " %} {% trans "Resend Verification Emails" %}.
{% endif %} Emails
{% csrf_token %} {{ email_form|as_crispy_errors }}

{% if alt_emails %} {% for email in alt_emails %} {% endfor %}
{{ email.email }} {% if not email.is_verified %} Unverified {% else %} Verified {% endif %}

To use an email for notifications it must be verified

{% endif %} {% if not alt_emails %}
No alternative emails in your account
{% endif %}
{{ email_form.alt_email|as_crispy_field }}
{% endblock %}