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 %}
|