This commit adds a lot of files, but most of them have no impact on any other code. The thrust here is to start creating chart pages showing which tracks and artists were most played for various time periods. Lots still not working, but we're getting there.
12 lines
287 B
HTML
12 lines
287 B
HTML
{% extends "base_list.html" %}
|
|
|
|
{% block title %}Albums{% endblock %}
|
|
|
|
{% block lists %}
|
|
{% for album in object_list %}
|
|
<dl style="width: 130px; float: left; margin-right:10px;">
|
|
<dd><img src="{{album.cover_image.url}}" width=120 height=120 /></dd>
|
|
</dl>
|
|
{% endfor %}
|
|
{% endblock %}
|