{% extends "base.htm" %} {% from 'bs_page_header.htm' import bs_page_header with context %} {% from 'bs_form_body.htm' import bs_form_body with context %} {% block main %} {{ bs_page_header(_("E-mail Addresses")) }} {% if request.user.emailaddress_set.exists() %}

{{ _('The following e-mail addresses are associated with your account:') }}

{% else %}
{{ _('Warning:') }} {{ _("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 %}

{{ _("Add E-mail Address") }}

{{ bs_form_body(form) }}
{% endblock main %} {% block bottom_scripts %} {% endblock bottom_scripts %}