{% extends "one_column_body.html" %} {% block title %}{% spaceless %}{% trans %}Change email{% endtrans %}{% endspaceless %}{% endblock %} {% block content %} {% if action_type=="change" %}

{% if user.email %} {% trans %}Change email{% endtrans %} {% else %} {% trans %}Save your email address{% endtrans %} {% endif %}

{% if user.email %} {% trans %}change {{email}} info{% endtrans %} {% else %} {% trans %}here is why email is required, see {{gravatar_faq_url}}{% endtrans %} {% endif %}

{% if msg %}

{{ msg }}

{% endif %}
{% csrf_token %} {% if next %} {% endif %}
{% if form.email.errors %}

{{form.email.errors|join(", ")}}

{% endif %} {{ form.email }}
{% if user.email %} {% endif %}
{% elif action_type=="validate" %}
{% trans %}Validate email{% endtrans %}

{% trans %}validate {{email}} info or go to {{change_email_url}}{% endtrans %}

{% elif action_type=="keep" %}
{% trans %}Email not changed{% endtrans %}

{% trans %}old {{email}} kept, if you like go to {{change_email_url}}{% endtrans %}

{% elif action_type=="done_novalidate" %}
{% trans %}Email changed{% endtrans %}

{% trans %}your current {{email}} can be used for this{% endtrans %}

{% elif action_type=="validation_complete" %}
{% trans %}Email verified{% endtrans %}

{% trans %}thanks for verifying email{% endtrans %}

{% elif action_type=="key_not_sent" %}
{% trans %}email key not sent{% endtrans %}

{% trans %}email key not sent {{email}} change email here {{change_link}}{% endtrans %}

{% endif %} {% endblock %}