1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-11-10 04:02:17 +00:00
supysonic/templates/home.html
2012-10-13 11:29:48 +02:00

21 lines
504 B
HTML
Executable File

{% extends "layout.html" %}
{% block body %}
<h2>Users</h2>
<table>
<tr><th>Name</th><th>EMail</th></tr>
{% for user in users %}
<tr><td>{{ user.name }}</td><td>{{ user.mail }}</td></tr>
{% endfor %}
</table>
<a href="{{ url_for('add_user') }}">Add</a>
<h2>Music folders</h2>
<table>
<tr><th>Name</th><th>Path</th></tr>
{% for folder in folders %}
<tr><td>{{ folder.name }}</td><td>{{ folder.path }}</td></tr>
{% endfor %}
</table>
<a href="{{ url_for('add_folder') }}">Add</a>
{% endblock %}