{% extends "account/base.html" %} {% load static i18n %} {% load crispy_forms_tags %} {% block title %}{% trans "BuildBlock | Account" %}{% endblock %} {% block content %}

{% trans "Email 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 an e-mail address set up. You should add an e-mail address to receive notifications, reset your password, etc." %}

{% endif %}

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

{% csrf_token %} {{ form|crispy }}
{% endblock content %} {% block app_js_bottom %} {{ block.super }} {% endblock app_js_bottom %}