User and permission management

This commit is contained in:
Eduardo Silva
2024-02-15 11:02:22 -03:00
parent 3177eb2b8d
commit f036daf779
10 changed files with 296 additions and 10 deletions

View File

@@ -1,5 +1,25 @@
{% extends "base.html" %}
{% block content %}
this page is just a placeholder for the moment
<table class="table table-striped">
<thead>
<tr>
<th>Username</th>
<th>User Level</th>
<th></th>
</tr>
</thead>
<tbody>
{% for user_acl in user_acl_list %}
<tr>
<td>{{ user_acl.user.username }}</td>
<td>{{ user_acl.get_user_level_display }}</td>
<td style="width: 1%; white-space: nowrap;">
<a href="/user/manage/?uuid={{ user_acl.uuid }}" ><i class="far fa-edit"></i></a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}