mirror of
https://github.com/simon987/Simple-Incremental-Search-Tool.git
synced 2025-04-16 08:46:49 +00:00
33 lines
995 B
HTML
33 lines
995 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block body %}
|
|
|
|
<div class="card">
|
|
<div class="card-header">Directory permissions</div>
|
|
<div class="card-body">
|
|
|
|
<table class="info-table table-hover table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Directory</th>
|
|
<th>Search access</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for user in users %}
|
|
<tr>
|
|
<td>{{ user }}</td>
|
|
<td><i class="far {{ "fa-check-square" if users[user].admin else "fa-square" }}"></i></td>
|
|
<td><a href="/user/{{ user }}" class="btn btn-primary">Manage</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock body %} |