{% extends 'admin/base.html' %} {% load static %} {% block title %}Role Management{% endblock %} {% block content %}

Role Management

Kelola role dan permission dalam sistem

Tambah Role
{% for role in roles %} {% empty %} {% endfor %}
Role Tipe Deskripsi User Count Status Aksi
{{ role.name }}
ID: {{ role.id }}
{{ role.get_role_type_display }}
{% if role.description %} {{ role.description|truncatechars:50 }} {% else %} Tidak ada deskripsi {% endif %}
{{ role.user_count }} user {% if role.is_active %} Aktif {% else %} Tidak Aktif {% endif %}

Tidak ada role yang ditemukan

{% if roles.has_other_pages %}
{% endif %}
{% endblock %}