{%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 }}
{{ user.email }} {% if can_change_email %} (change) {% else %}

The email address of this account cannot be changed, because the account does not have a local password, most likely because it's connected to a third party system (such as Google or Facebook).

{% endif %}
{% 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 %} {% 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%}