{% load i18n %}

{% trans "E-mail Addresses" %}

{% if user.emailaddress_set.all %}

{% trans 'The following e-mail addresses are associated with your account:' %}

{% csrf_token %}
{% for emailaddress in user.emailaddress_set.all %}
{% endfor %}
{% else %}

{% trans 'Warning:'%} {% trans "You currently do not have any e-mail address set up. You should really add an e-mail address so you can receive notifications, reset your password, etc." %}

{% endif %}

{% trans "Add E-mail Address" %}

{% csrf_token %} {% if form.non_field_errors %} {% endif %}
{% if form.email.errors %} {% for error in form.email.errors %} {{ error }}
{% endfor %}
{% endif %}