{% extends "base.html" %} {% block title %}User Management - AsapLoads POS{% endblock %} {% block header_title %}User Management{% endblock %} {% block content %}
User Management
Manage users and their access roles
Add New User

Create and manage user accounts with different roles. Each user will have their own login credentials to access the system based on their assigned role.

Admin Users

{{ admin_count }}

Full system access and management
Managers

{{ manager_count }}

Branch supervision and operations
Cashiers

{{ cashier_count }}

Sales and basic operations
{% if users %}
{% for user_obj in users %} {% endfor %}
Name Email Role Branch Status Actions
{{ user_obj.get_full_name }} {{ user_obj.email }} {{ user_obj.role|title }} {{ user_obj.branch.name|default:"N/A" }} {% if user_obj.is_active %} Active {% else %} Inactive {% endif %}
{% if user_obj.id != user.id %} {% endif %}
{% else %}

No users found. Add a user to get started.

{% endif %}
{% block extra_js %} {% endblock %} {% endblock %}