{% load i18n util %}
{% if request.user.email_confirmed %}

{% trans "You have confirmed your email address!" %}

{% endif %} {% if not request.user.email %}

{% trans "Attention!" %}

{% trans "Please specify an email address for your account, we won't be able to proceed with verification until you do." %}

{% elif not request.user.email|email_confirmed %}

{% trans "Email Confirmation" %}

{% trans "Before getting access to any other features, you need to confirm your email address." %}

{% trans "We have sent you a message containing the confirmation link." %}
{% csrf_token %}

{% elif not request.user.is_verified_user %}

{% trans "You won't have full access until we or the organization you are affiliated with have reviewed your account. Thank you for your patience." %}

{% endif %}