{% extends 'account/account_layout.html' %} {% load i18n %} {% block account_head_scripts %}{% include 'account/style.html' %}{% endblock %} {% block account_title %}Manage Emails |{% endblock %} {% block account_content %}

Manage Emails:

All the verified emails are used to track the ports for the "Maintained by me" section.

{% if user.emailaddress_set.all %}
Existing Emails:
{% csrf_token %}
{% for emailaddress in user.emailaddress_set.all %}
{% endfor %}
{% 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 email address

If you are using multiple emails in Portfiles, you can add more emails. Once an email is verified, all ports with these emails will be displayed in the "Maintained by me" section.

{% csrf_token %} {{ form.as_p }}
{% endblock %} {% block account_script %} {% endblock %}