1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-20 03:11:04 +00:00
supysonic/templates/home.html

22 lines
527 B
HTML
Raw Normal View History

2012-10-13 09:29:48 +00:00
{% extends "layout.html" %}
{% block body %}
2012-11-17 17:30:30 +00:00
<p><a href="{{ url_for('user_index') }}">Users</a> | <a href="{{ url_for('folder_index') }}">Folders</a></p>
2012-10-13 12:53:09 +00:00
<h2>Artists</h2>
<table>
<tr><th>Id</th><th>Name</th></tr>
{% for artist in artists %}
<tr><td>{{ artist.id }}</td><td>{{ artist.name }}</td></tr>
{% endfor %}
</table>
<h2>Albums</h2>
<table>
<tr><th>Artist</th><th>Album</th></tr>
{% for album in albums %}
<tr><td>{{ album.artist.name }}</td><td>{{ album.name }}</td></tr>
{% endfor %}
</table>
2012-10-13 09:29:48 +00:00
{% endblock %}