{% extends "account/base_manage_email.html" %} {% comment %} SPDX-FileCopyrightText: 2024 Helmholtz-Zentrum Dresden-Rossendorf (HZDR) SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load allauth widget_tweaks %} {% block head_title %} Email Addresses {% endblock head_title %} {% block content %} {% include "allauth/elements/heliport_heading.html" with text="Email Addresses" %} {% if emailaddresses %}

The following email addresses are associated with your account:

{% csrf_token %} {% for radio in emailaddress_radios %} {% with emailaddress=radio.emailaddress %}
{% endwith %} {% endfor %}
{% if EMAIL_ENABLED %} {% endif %}
{% else %} {% include "account/snippets/warn_no_email.html" %} {% endif %} {% if emailaddresses and can_add_email %}
{% endif %} {% if can_add_email %} {% include "allauth/elements/heliport_heading.html" with text="Add Email Address" %}
{% csrf_token %} {% for field in form %}
{{ field|add_class:"form-control" }} {% include "allauth/elements/heliport_form_errors.html" with errors=field.errors %}
{% endfor %}
{% endif %} {% endblock content %} {% block extra_body %} {# TODO: Implement modal to replace this #} {% endblock extra_body %}