{% extends "useradmin/base.html" %} {% load crispy_forms_tags %} {% block content %} {% for m in current_user_data.messages %}
{{ m.message }}
{% endfor %}
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 %}
{% 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 %} {% crispy password_form %} {% endif %}
{% endblock %}