{% extends "base_content.html" %} {% load i18n %} {% block title %}{% spaceless %}{% trans "Change email" %}{% endspaceless %}{% endblock %} {% block content %} {% ifequal action_type "change" %}
{% if user.email %} {% trans "Change email" %} {% else %} {% trans "Save your email address" %} {% endif %}

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

{% if msg %}

{{ msg }}

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

{{form.email.errors|join:", "}}

{% endif %} {{ form.email }}
{% if user.email %} {% endif %}
{% endifequal %} {% ifequal action_type "validate" %}
{% trans "Validate email" %}

{% blocktrans %}validate {{email}} info or go to {{change_email_url}}{% endblocktrans %}

{% endifequal %} {% ifequal action_type "keep" %}
{% trans "Email not changed" %}

{% blocktrans %}old {{email}} kept, if you like go to {{change_email_url}}{% endblocktrans %}

{% endifequal %} {% ifequal action_type "done_novalidate" %}
{% trans "Email changed" %}

{% blocktrans %}your current {{email}} can be used for this{% endblocktrans %}

{% endifequal %} {% ifequal action_type "validation_complete" %}
{% trans "Email verified" %}

{% trans "thanks for verifying email" %}

{% endifequal %} {% ifequal action_type "key_not_sent" %}
{% trans "email key not sent" %}

{% blocktrans %}email key not sent {{email}} change email here {{change_link}}{% endblocktrans %}

{% endifequal %} {% endblock %}