Add resume URLs to list views

This commit is contained in:
2023-03-11 19:59:15 -05:00
parent e5acedbb01
commit f6c1a459d4
2 changed files with 9 additions and 1 deletions

View File

@ -47,6 +47,9 @@
<tr>
<th scope="col">Scrobbles</th>
<th scope="col">Title</th>
<th scope="col"></th>
<th scope="col">Resume</th>
<th scope="col">Finish</th>
</tr>
</thead>
<tbody>
@ -54,6 +57,9 @@
<tr>
<td>{{media.scrobble_set.count}}</td>
<td><a href="{{media.get_absolute_url}}">{{media}}</a></td>
<td>{% if media.author %}{{media.author}}{% else %}{{media.platforms.first}}{% endif %}</td>
<td><a type="button" class="btn btn-sm btn-primary" href="{{media.get_start_url}}">Resume</a></td>
<td><a type="button" class="right btn btn-sm " href="{{media.get_longplay_finish_url}}">Finish</a></td>
</tr>
{% endfor %}
</tbody>
@ -88,6 +94,7 @@
<tr>
<th scope="col">Scrobbles</th>
<th scope="col">Title</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
@ -95,6 +102,7 @@
<tr>
<td>{{media.scrobble_set.count}}</td>
<td><a href="{{media.get_absolute_url}}">{{media}}</a></td>
<td>{% if media.author %}{{media.author}}{% else %}{{media.platforms.first}}{% endif %}</td>
</tr>
{% endfor %}
</tbody>

View File

@ -40,7 +40,7 @@
{% if object.scrobble_set.last.long_play_complete == True %}
<a href="">Play again</a>
{% else %}
<a href="">Resume playing</a>
<a href="{{object.get_start_url}}">Resume playing</a>
{% endif %}
</p>
</div>