{% load i18n util %} {% if request.user.is_authenticated %} {% if not request.user.is_verified_user or request.user.orgs_require_reauth %}
{% if request.user.orgs_require_reauth %}

{% blocktrans trimmed %} Some of your organizations request that you confirm your email address. Your access to them has been restricted until you do so. {% endblocktrans %}

{% for org, email in request.user.orgs_require_reauth %}

{% blocktrans with org_name=org.name email=email trimmed %} {{ org_name }} requests confirmation of {{ email }} {% endblocktrans %}

{% endfor %}

{% trans "Please confirm your email addresses "%} {% trans "here" %}. {% else %}

{% blocktrans trimmed %} Your user account has not been affiliated with any Organization yet, and will have limited access to some of the data (such as non-public network contact information). {% endblocktrans %}

{% if not request.user.email_confirmed %}

{% trans "Please take the time to confirm your email address and request affiliation"%} {% trans "here" %}.

{% else %}

{% trans "You may request affiliation to an Organization or ASN" %} {% trans "here" %}.

{% endif %} {% endif %}
{% endif %} {% endif %}