28 lines
873 B
HTML
28 lines
873 B
HTML
{% extends "base_list.html" %}
|
|
|
|
{% block lists %}
|
|
<div class="row">
|
|
<div class="col-md">
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-sm">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Title</th>
|
|
<th scope="col">Scrobbles</th>
|
|
<th scope="col">All time</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for obj in object_list %}
|
|
<tr>
|
|
<td><a href="{{obj.get_absolute_url}}">{{obj}}</a></td>
|
|
<td>{{obj.scrobble_set.count}}</td>
|
|
<td></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |