{% extends "base/document.html" %} {% load crispy_forms_tags %} {% block title %} {% if email.is_verified %} {% trans 'Edit Email' %} {% else %} {% trans 'Verify Email' %} {% endif %} {% endblock %} {% block content %}

{% if email.is_verified %} {% trans 'Edit Email' %} {% else %} {% trans 'Verify Email' %} {% endif %}

{% csrf_token %}

{% blocktrans with username=username %} User Name: {{ username }} {% endblocktrans %}

{{ form|crispy }}
{% endblock %} {% block extra_js %}{% endblock %}