{% 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 ACCESS-CI Users

Search for users to add to ACCESS Django Admin

{% if search_results %}
Search Results
{% for user in search_results %} {% endfor %}
Username Name Email 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 %}
{% elif request.GET.q %}
No users found matching your criteria.
{% endif %}

Current Users

All current users in the ACCESS Django Admin

{% for user in users %} {% empty %} {% endfor %}
Username Name Email 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.
{% endblock %}