{% extends "module_base.html" %} {% load static %} {% block title %}Role Management{% endblock %} {% block content %}

Role Management

{% for role in roles %} {% empty %} {% endfor %}
Role Name Description Users Count Created Actions
{{ role.name }} {{ role.description|default:"-" }} {{ role.userrole_set.count }} {{ role.created_at|date:"d M Y" }}
No roles found.
{% endblock %}