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

{% trans "Manage Email Address" %}

{% if not emailaddresses %}
{% include "account/snippets/warn_no_email.html" %}
{% endif %} {% url 'account_email' as action_url %}
{% csrf_token %} {% if current_emailaddress %}
{% endif %} {% if new_emailaddress %}
{% trans "Your email address is still pending verification." %}
{% if current_emailaddress %} {% endif %}
{% endif %}
{% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
{% if new_emailaddress %} {% endif %}
{% endblock content %} {% block extra_body %} {{ block.super }} {% endblock extra_body %}