|
@@ -1,8 +1,10 @@
|
|
{% load urlreplace %}
|
|
{% load urlreplace %}
|
|
|
|
+{% load naturalduration %}
|
|
|
|
|
|
<table class="table table-striped table-sm">
|
|
<table class="table table-striped table-sm">
|
|
<thead>
|
|
<thead>
|
|
<tr>
|
|
<tr>
|
|
|
|
+ <th scope="col">Latest</th>
|
|
<th scope="col">Title</th>
|
|
<th scope="col">Title</th>
|
|
<th scope="col">Scrobbles</th>
|
|
<th scope="col">Scrobbles</th>
|
|
<th scope="col">Start</th>
|
|
<th scope="col">Start</th>
|
|
@@ -11,6 +13,7 @@
|
|
<tbody>
|
|
<tbody>
|
|
{% for obj in object_list %}
|
|
{% for obj in object_list %}
|
|
<tr>
|
|
<tr>
|
|
|
|
+ <td><a href="{{obj.scrobble_set.last.get_absolute_url}}">{{obj.scrobble_set.last.local_timestamp}}
|
|
<td><a href="{{obj.get_absolute_url}}">{{obj}}</a></td>
|
|
<td><a href="{{obj.get_absolute_url}}">{{obj}}</a></td>
|
|
{% if request.user.is_authenticated %}
|
|
{% if request.user.is_authenticated %}
|
|
<td>{{obj.scrobble_count}}</td>
|
|
<td>{{obj.scrobble_count}}</td>
|