mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-04-19 08:55:12 +00:00
28 lines
713 B
HTML
28 lines
713 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>
|
|
|
|
<a href="/user/manage/" class="btn btn-primary">Add User</a>
|
|
|
|
{% endblock %}
|