{% load i18n %}

{% trans "Email addresses" %}

{% for email in request.user.emailaddress_set.all %}
{{ email }}{% if email.primary %} ({% trans "Primary" %}){% endif %}
{% if not email.verified %}
{% csrf_token %} {% trans "Confirmation required" %}
{% endif %}
{% if not email.primary %} {% trans "Set as primary" %} {% endif %} {% trans "Remove" %}
{% endfor %}
{% blocktrans trimmed %} For speedy validation, it is required that you use a work e-mail address. If you plan to register your ASN with PeeringDB, it is recommended that you use an email-address that exists in the ASN's public contact details. {% endblocktrans %}
{% trans "Set as primary email address" %}