{% extends "account/_layout.html" %} {% load i18n %} {% block page_title %}{% trans "Account" %} | {{ block.super }}{% endblock %} {% block main_content %}

{% trans "E-mail Addresses" %}

{% if user.emailaddress_set.all %}

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

{% 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 %}
{{ form.email.label_tag }} {{ form.email }} {% if form.errors.email %}
{% for error in form.errors.email %}

{{ error }}

{% endfor %}
{% endif %}
{% endblock %}