{% 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 %} {% trans "Current Email:" %} {% endif %} {% if new_emailaddress %} {% if not current_emailaddress %} {% trans "Current Email:" %} {% else %} {% trans "Changing To:" %} {% endif %} {% trans "Your email address is still pending verification." %} {% trans "Re-send Verification" %} {% if current_emailaddress %} {% trans "Cancel Change" %} {% endif %} {% endif %} {% trans "Change To:" %} {% if form.email.errors %} {{ form.email.errors }} {% endif %} {% trans "Change Email" %} {% if new_emailaddress %} {% csrf_token %} {% endif %} {% endblock content %} {% block extra_body %} {{ block.super }} {% endblock extra_body %}