{% extends "userprofile/base_2col.html" %} {% load i18n %} {% block title %}{% if user.email %}{% trans "E-mail change" %}{% else %}{% trans "Add e-mail" %}{% endif %}{% endblock %} {% block robots %}noindex,nofollow{% endblock %} {% block extrajs %} {% endblock %} {% block userprofile_navigation %} {% include "userprofile/menu.html" %} {% endblock %} {% block userprofile_content %}
{% csrf_token %}
{% if user.email %}{% trans "E-mail change" %}{% else %}{% trans "Add e-mail" %}{% endif %}

{{ form.email }} {% if form.email.errors %}
* {{ form.email.errors|join:"; " }}
{% endif %}

{% if form.non_field_errors %} {% endif %}

{% endblock %} {% block userprofile_content_related %}

{% trans "Add e-mail" %}

{% trans "Insert the new e-mail address. An e-mail will be send to it for testing and confirmation" %}.

{% endblock %}