{% extends "account/base.html" %} {% load url from future %} {% load crispy_forms_tags %} {% block head_title %}Account{% endblock %} {% block content %}

E-mail Addresses

{% if user.emailaddress_set.all %}

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

{% csrf_token %} {{ form|crispy }}
{% endblock %} {% block extra_body %} {% endblock %}