{% extends 'base.html' %} {% load static %} {% block title %}User Management{% endblock %} {% block css %} {% endblock %} {% block content %}

User Management

Manage system users, roles, and permissions

Total Users
{{ total_users }}
All system users
Active Users
{{ active_users }}
Currently active
Pending Users
{{ pending_users }}
Awaiting approval
Administrators
{{ admin_users }}
System admins
Clear

System Users

{% for user in users %} {% endfor %}
User Department Role Status Last Login Created Actions
{% if user.avatar %} {% else %} {% endif %}
{{ user.get_full_name|default:user.username }}
{{ user.email }}
{% if user.phone %}
{{ user.phone }}
{% endif %}
{% if user.department %} {{ user.department.name }} {% else %} Not assigned {% endif %} {% for role in user.roles.all %} {{ role.name }} {% empty %} No roles {% endfor %} {% if user.is_active %} {% if user.is_online %} Online {% else %} Active {% endif %} {% elif user.is_pending %} Pending {% elif user.is_suspended %} Suspended {% else %} Inactive {% endif %} {% if user.last_login %}
{{ user.last_login|date:"M d, Y" }}
{{ user.last_login|date:"g:i A" }}
{% else %} Never {% endif %}
{{ user.date_joined|date:"M d, Y" }}
{{ user.created_by.get_full_name|default:user.created_by.username }}
{% if is_paginated %} {% endif %}
{% endblock %} {% block js %} {% endblock %}