{% extends "../base.html" %} {% load crispy_forms_tags %} {% load humanize %} {% block page_title %}User Accounts Management{% endblock %} {% block content %}

User Accounts Management

Manage system users and their access permissions

{{ total_users }}
Total Users
Registered accounts
{{ active_users }}
Active Users
Enabled accounts
{{ staff_users }}
Staff Accounts
With staff privileges
{{ recent_logins }}
Recent Activity
Active in last 30 days
Search & Filter Users
{% if request.GET.search %} Clear Search {% endif %}
{% for user in users %}
{% if user.staff_account and user.staff_account.staff.staff_photo %} Profile Photo {% else %}
{{ user.first_name|first|default:user.username|first|upper }}
{% endif %}
{{ user.get_full_name|default:user.username }}

@{{ user.username }}

{{ user.id }}
{% empty %}

No Users Found

{% if request.GET.search %} No users match your search criteria: "{{ request.GET.search }}" {% else %} No users are currently registered in the system. {% endif %}

{% if request.GET.search %} Clear Search {% endif %}
{% endfor %}
{% if is_paginated %}
Showing {{ page_obj.start_index }} to {{ page_obj.end_index }} of {{ paginator.count }} users (Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }})
{% endif %} {% endblock %}