Can update user information

This commit is contained in:
2022-04-08 16:28:19 +02:00
parent 91817bd2a4
commit 65dac1e923
3 changed files with 35 additions and 2 deletions

View File

@ -26,7 +26,10 @@
<td>{{ u.email }}</td>
<td>{% if u.admin %}Admin{% else %}Regular user{% endif %}</td>
<td>{% if u.enabled %}Enabled{% else %}Disabled{% endif %}</td>
<td>Edit Delete</td>
<td>
<a href="/admin/edit_user?id={{ u.uid }}">Edit</a>
Delete
</td>
</tr>
{% endfor %}
</tbody>