{% extends 'base_template/base1.html' %} {% block content %} {% include 'dashboard/content/navbar.html' %}
{% include 'dashboard/content/sidebar.html' %}

User Management

User Management

Add User {% for user in users %} {% empty %} {% endfor %}
IDUsernameEmailRoleActiveActions
{{ user.id }} {{ user.username }} {{ user.email }} {{ user.profile.role }} {{ user.is_active }} Edit Delete
No users found.
{% include 'dashboard/content/footer.html' %}
{% endblock %}