mirror of
https://github.com/spl0k/supysonic.git
synced 2024-11-10 04:02:17 +00:00
13 lines
397 B
HTML
13 lines
397 B
HTML
|
{% extends "layout.html" %}
|
||
|
{% block body %}
|
||
|
<h2>Users</h2>
|
||
|
<table>
|
||
|
<tr><th>Name</th><th>EMail</th><th>Admin</th><th></th></tr>
|
||
|
{% for user in users %}
|
||
|
<tr><td>{{ user.name }}</td><td>{{ user.mail }}</td><td>{{ user.admin }}</td><td><a href="{{ url_for('del_user', id = user.id) }}">X</a></td></tr>
|
||
|
{% endfor %}
|
||
|
</table>
|
||
|
<a href="{{ url_for('add_user') }}">Add</a>
|
||
|
|
||
|
{% endblock %}
|