{%extends "base/page.html"%} {% load pgfilters %} {%block title%}Edit user profile{%endblock%} {%block contents%}

Edit User Profile

{% csrf_token %} {% if userform.errors or profileform.errors or contribform.errors %} {% endif %}
{{ user.username }}
{% for field in userform %}
{% if field.errors %} {% for e in field.errors %}
{{e}}
{% endfor %} {% endif %}
{{ field|field_class:"form-control" }}
{% endfor %} {% for field in profileform %}
{% if field.errors %} {% for e in field.errors %}
{{e}}
{% endfor %} {% endif %}
{{ field|field_class:"form-control" }}
{% endfor %}

Secondary email addresses

You can add one or more secondary email addresses to your account, which can be used for example to subscribe to mailing lists.

{%if secondaryaddresses%}

Note that deleting any address here will cascade to connected system and can for example lead to being unsubscribed from mailing lists automatically.

The following secondary addresses are currently registered with your account:

{%if secondarypending %}

One or more of the secondary addresses on your account are listed as pending. An email has been sent to the address to confirm that you are in control of the address. Open the link in this email (while logged in to this account) to confirm the account. If an email address is not confirmed within approximately 24 hours, it will be deleted. If you have not received the confirmation token, you can delete the address and re-add it, to have the system re-send the verification email.

{%endif%} {%endif%}

Add new email address

{%for field in secondaryemailform%}
{% if field.errors %} {% for e in field.errors %}
{{e}}
{% endfor %} {% endif %}
{{ field|field_class:"form-control" }}
{%endfor%} {% if contribform %}

Edit contributor information

You can edit the information that's shown on the contributors page. Please be careful as your changes will take effect immediately!

{% for field in contribform %}
{% if field.errors %} {% for e in field.errors %}
{{e}}
{% endfor %} {% endif %}
{{ field|field_class:"form-control" }}
{% endfor %} {% endif %}
{%endblock%}