{% extends "./template.html" %} {% block content %} {% load static %}

User Information

User Information Notes
{% csrf_token %}
{% if not errors %}{{ save_state }}{% endif %}
{% if errors %}
{{ errors }}
{% endif %}
{{ user_information_form.username }}
{{ user_information_form.password1 }}
{{ user_information_form.password2 }}
{{ user_information_form.first_name }}
{{ user_information_form.last_name }}
{{ user_information_form.email }}
{{ user_information_form.is_active }}
{% if is_superuser == True %}
{{ user_information_form.is_superuser }}
{% endif %}

User Group

{% if user_group_results %} If you require to add users to groups, please go to the group information page and assign the user there. {% if administration_permission == 4 %} {% endif %} {% for user_group in user_group_results %} {% if administration_permission == 4 %} {% endif %} {% endfor %}
Group Permission SetDelete
{{ user_group.group }} {{ user_group.permission_set }}Delete
{% else %} Users are not in any groups. Please go to the groups information page to assign a user to a group. {% endif %}
{% endblock %}