{% extends "account/base_entrance.html" %} {% load blocktrans trans from i18n %} {% load user_display from account %} {% block head_title %} {% trans "Verify email" %} {% endblock head_title %} {% block content_title_text %} {% trans "Verify email" %} {% endblock content_title_text %} {% block content_body %} {% if confirmation %} {% user_display confirmation.email_address.user as user_display %}

{% blocktrans with confirmation.email_address.email as email trimmed %} Please verify that {{ email }} is an email address for the user {{ user_display }}. {% endblocktrans %}

{% csrf_token %}
{% else %} {% url 'account_email' as email_url %}

{% blocktrans trimmed %} This email verification link has expired or is invalid. Please restart the verification request. {% endblocktrans %}

{% endif %} {% endblock content_body %}