{% extends "base.html" %} {% load i18n %} {% block breadcrumbs %}
  • {% trans "Registration" %}
  • {{ title }}
  • {% endblock %} {% block content %}

    {% if is_reset %} {% trans "Password reset almost complete" %} {% elif is_remove %} {% trans "Account removal almost complete" %} {% else %} {% trans "Registration almost complete" %} {% endif %}

    {% if is_reset %}

    {% blocktrans %}Shortly you should receive an email containing a confirmation link. Click it to reset your password.{% endblocktrans %}

    {% elif is_remove %}

    {% blocktrans %}Shortly you should receive an email containing a confirmation link. Click it to remove your account.{% endblocktrans %}

    {% else %}

    {% blocktrans %}Thank you for registering. Click the confirmation link you receive by email to complete the registration.{% endblocktrans %}

    {% endif %}

    {% blocktrans %}If the confirmation link expires before you get to use it, register again.{% endblocktrans %}

    {% url 'contact' as contact_url %} {% blocktrans %}If you don't receive it shortly, please check your spam folder or retry the registration. Should the problem persist, please contact us.{% endblocktrans %}

    {% trans "Report an issue with registration" %}

    {% endblock %}