{% extends "base/layout.html" %} {% block page_actions %} Add Role {% endblock %} {% block content %}
| Role Name | Description | Users | Status | Type | Created | Actions | |
|---|---|---|---|---|---|---|---|
|
{{ role.name }}
{% if role.is_system %}
System Role
{% endif %}
|
{{ role.description or 'No description provided' }} |
{{ role_user_counts[role.id] if role_user_counts[role.id] else 0 }}
assigned
|
{% if role.is_active %} Active {% else %} Inactive {% endif %} | {% if role.is_system %} System {% else %} Custom {% endif %} | {{ role.created_at.strftime('%Y-%m-%d') if role.created_at else '-' }} | ||
|
No roles found {% if search %}Try adjusting your search criteria {% endif %} |
|||||||