{% extends "account/base.html" %} {% block title %}{{ page_title(_("Email addresses")) }}{% endblock %} {% block content %}

{{ _("Email addresses") }}

{% if user.emailaddress_set.all().exists() %}

{{ _("The following email addresses are associated with your profile:") }}

{{ csrf() }}
    {% for emailaddress in user.emailaddress_set.all() %}
  • {% endfor %}

{% else %}

{% trans %}Warning:"You have not added any email addresses to this profile. Without one you cannot receive notifications, reset your password, etc.{% endtrans %}

{% endif %}

{{ _("Add email address") }}

{{ csrf() }} {{ form.as_p() }}

{{ _("Edit profile") }}

{% endblock %} {% block js %} {{ super() }} {% endblock %}