{% extends 'admin/layout.html.twig' %} {% block title %}Users - KitscoApp{% endblock %} {% block page_title %}Users{% endblock %} {% block content %}
Manage system users and their roles
New User| Name | Roles | Status | Actions | |
|---|---|---|---|---|
| {{ user.fullName }} | {{ user.email }} |
{% for role in user.roles %}
{% if role != 'ROLE_USER' %}
{% set roleColors = {
'ROLE_SUPER_ADMIN': 'bg-purple-100 text-purple-700',
'ROLE_ADMIN': 'bg-red-100 text-red-700',
'ROLE_MANAGER': 'bg-orange-100 text-orange-700',
'ROLE_ACCOUNTANT': 'bg-blue-100 text-blue-700',
'ROLE_SHOPKEEPER': 'bg-green-100 text-green-700',
'ROLE_CUSTOMER': 'bg-gray-100 text-gray-700'
} %}
{% set roleLabels = {
'ROLE_SUPER_ADMIN': 'Super Admin',
'ROLE_ADMIN': 'Admin',
'ROLE_MANAGER': 'Manager',
'ROLE_ACCOUNTANT': 'Accountant',
'ROLE_SHOPKEEPER': 'Shopkeeper',
'ROLE_CUSTOMER': 'Customer'
} %}
{{ roleLabels[role] ?? role|replace({'ROLE_': ''})|capitalize }}
{% endif %}
{% endfor %}
|
{% if user.isActive %} Active {% else %} Inactive {% endif %} | |
|
No users found Create User |
||||