{% extends "account/base.html" %} {% load i18n %} {% block head_title %} {% trans "Email Address" %} {% endblock %} {% block content %}

{% trans "Email Address" %}

{% if emailaddresses %} {% if current_emailaddress %}

{% trans 'The following email address is associated with your account:' %} {{ current_emailaddress.email }}

{% endif %} {% if new_emailaddress %}

{% trans 'Your email address is still pending verification:' %} {{ new_emailaddress.email }}

{% csrf_token %}
{% endif %} {% else %} {% include "account/snippets/warn_no_email.html" %} {% endif %}

{% trans "Change Email Address" %}

{% csrf_token %} {{ form.as_p }}
{% endblock %}