{% extends "access_django_user_admin/base_nav_full.html" %} {% load i18n %} {% load static %} {% load user_admin_tags %} {% block title %}Update User{% endblock %} {% block content %}

Update User: {{ object.username }}

Update ACCESS Django Admin user information and groups

{% if messages %} {% endif %}
{% csrf_token %} {% if form.errors %}
Please correct the errors below.
{% endif %}
Account Information
{% if form.username.errors %}
{{ form.username.errors }}
{% endif %}
Personal Information
{% if form.first_name.errors %}
{{ form.first_name.errors }}
{% endif %}
{% if form.last_name.errors %}
{{ form.last_name.errors }}
{% endif %}
{% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
Permissions
Designates whether this user should be treated as active.
Designates whether the user can log into this admin site.
Groups
{% for group in all_groups %}
{% empty %}

No groups available.

{% endfor %}
Cancel
{% endblock %}