mirror of
https://github.com/simon987/Simple-Incremental-Search-Tool.git
synced 2025-12-14 23:59:04 +00:00
Some work on user management
This commit is contained in:
@@ -9,6 +9,10 @@
|
||||
<div class="card-header">Create user</div>
|
||||
<div class="card-body">
|
||||
|
||||
{% if not admin_account_present %}
|
||||
<p>This page is unlocked because there are no admin accounts</p>
|
||||
{% endif %}
|
||||
|
||||
<form method="POST" action="/user/add">
|
||||
|
||||
<div class="input-group form-group">
|
||||
@@ -44,7 +48,7 @@
|
||||
<tbody>
|
||||
{% for user in users %}
|
||||
<tr>
|
||||
<td style="width: 80%;">{{ user }}</td>
|
||||
<td style="width: 80%;">{% if session["username"] == user %}<b>{{ user }}{% else %}{{ user }}{% endif %}</b></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>
|
||||
|
||||
Reference in New Issue
Block a user