{% extends "geoluminate/bootstrap/card.html" %} {% load i18n crispy_forms_tags %} {% block header %} {% trans "E-mail Addresses" %} {% endblock header %} {% block title %} {% endblock title %} {% block body %} {% 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 %}
{% trans "Primary" %} {% trans "E-mail" %} {% trans "Verified" %} {% trans "Delete" %}
{% if emailaddress.verified %} {% else %} {% trans "Unverified" %} {% endif %}
{% comment %}
{% endcomment %}
{% else %}

{% trans 'Warning:' %} {% trans "You currently do not have any e-mail addresses set up. A verified email is required to claim your own data, receive notifications, reset your password, etc." %}

{% endif %} {% endblock body %} {% block footer %} {% if can_add_email %} {% include 'user/components/add_email_modal.html' with modal_id='addEmailModal' %} {% endif %} {% endblock footer %} {% block js %} {% endblock %}