{% extends "access_django_user_admin/base_nav_full.html" %} {% 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.first_name }} {{ user.last_name }} | {{ user.email }} | {% with existing_user=user.portal_login|get_existing_user %} {% if existing_user %} {% if existing_user.is_active %} Active {% else %} Inactive {% endif %} {% else %} Not Set {% endif %} {% endwith %} | {% with existing_user=user.portal_login|get_existing_user %} {% if existing_user %} {% if existing_user.is_staff %} Staff {% else %} No {% endif %} {% else %} Not Set {% endif %} {% endwith %} | {% with existing_user=user.portal_login|get_existing_user %} {% if existing_user %} Update User {% else %} {% endif %} {% endwith %} |
All current users in the ACCESS Django Admin
Username | Name | Status | Staff | Action | |
---|---|---|---|---|---|
{{ user.username }} | {{ user.first_name }} {{ user.last_name }} | {{ user.email }} | {% if user.is_active %} Active {% else %} Inactive {% endif %} | {% if user.is_staff %} Staff {% else %} No {% endif %} | Update User |
No users found. |