{% extends "base_content.html" %} {% load i18n %} {% block content %} {% ifequal action_type "change" %}
{% trans "Change email" %}

{% blocktrans %}change {{email}} info{% endblocktrans %}

{% if form.errors %}

{% trans "Please correct errors below:" %}
{% if form.email.errors %} {{ form.email.errors|join:", " }} {% endif %} {% if form.password.errors %} {{ form.password.errors|join:", " }} {% endif %}

{% endif %} {% if msg %}

{{ msg }}

{% endif %}

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

{% blocktrans %}validate {{email}} info{% endblocktrans %}

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

{% blocktrans %}old {{email}} kept{% 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 %}