{% extends "base.html" %} {% block head %} {{ super() }} {% endblock %} {% block body %}
{% if sent %} {% elif success %} {% else %} {% endif %}
{% if sent %}
{{ _('You Got Mail!') }}

{{ _('Please check your inbox. We have sent you an email.') }}

{% elif success %}
{{ _('All Done') }}

{{ _('Your email address is now confirmed.') }}

{% else %}
{{ _('Hm..') }}

{{ _('This did not work. Please try again later.') }}

{{ _('Try again') }} {% endif %}
{% endblock %}