{% extends "base.html" %} {% block title %}User Management - AsapLoads POS{% endblock %} {% block header_title %}User Management{% endblock %} {% block content %}
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_count }}
Full system access and management{{ manager_count }}
Branch supervision and operations{{ cashier_count }}
Sales and basic operations| Name | 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 %} |
No users found. Add a user to get started.