{% extends "useradmin/base.html" %} {% block tabs %}{% endblock %} {% block outercontent %} {% if current_user_data.messages %} {% endif %}

User information

Login: {{ account.login }}
Name: {{ account.name }}
Groups: {% if account.accountgroup_set.all %}
    {% for g in account.accountgroup_set.all %}
  • {{ g }}
  • {% endfor %}
{% else %} None {% endif %}
Organizations: {% if account.organizations.all %}
    {% for o in account.organizations.all %}
  • {{ o }}
  • {% endfor %}
{% else %} None {% endif %}

Change password

{% if account.ext_sync %}

You are not allowed to change your password from this page. Your account is managed through an external system, known as "{{ account.ext_sync }}".

{% else %}
{{ password_form.as_table }}
{% endif %} {% endblock %}