{% extends base_template %} {% load i18n %} {% load account socialaccount %} {% load static %} {% load user_admin_tags %} {% load get_settings %} {% block title %}Django User Admin{% endblock %} {% block content %}
Search for users to add to ACCESS Django Admin
| Username | Name | Status | Staff | Action | |
|---|---|---|---|---|---|
| {{ user.portal_login }} | {{ user.last_name }}, {{ user.first_name }} | {{ user.email }} | {% if existing_user %} {% if existing_user.is_active %} Active {% else %} Inactive {% endif %} {% else %} Not Set {% endif %} | {% if existing_user %} {% if existing_user.is_staff %} Staff {% else %} No {% endif %} {% else %} Not Set {% endif %} | {% if existing_user %} Update User {% else %} {% endif %} |
All current users in the ACCESS Django Admin
| Username | Name | Status | Staff | Action | |
|---|---|---|---|---|---|
| {{ user.username }} | {{ user.last_name }}, {{ user.first_name }} | {{ user.email }} | {% if user.is_active %} Active {% else %} Inactive {% endif %} | {% if user.is_staff %} Staff {% else %} No {% endif %} | Update User |
| No users found. | |||||