mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-04-19 00:45:16 +00:00
26 lines
647 B
HTML
26 lines
647 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<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 %}
|