{% extends "base.html" %} {% comment %} SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load i18n %} {% block content %}

{{ title }}

{% if validlink %}

{% trans "Your email have successfully been validated." %}

{% blocktrans %}You can now log in.{% endblocktrans %}

{% else %}

{% if user.is_authenticated and user.registration.email_confirmed %} {% trans "The link was invalid. The token may have expired, or your account is already activated. However, your account seems to be already valid." %} {% else %} {% trans "The link was invalid. The token may have expired, or your account is already activated. Please send us an email to activate your account." %} {% endif %}

{% endif %}
{% endblock %}