[longplay] Make sure they're marked status is correct
All checks were successful
build / test (push) Successful in 2m2s

This commit is contained in:
2026-06-15 14:37:20 -04:00
parent c2138b3ac6
commit 7d3f615ed7
4 changed files with 6 additions and 3 deletions

View File

@ -62,7 +62,7 @@
{% for scrobble in scrobbles.all|dictsortreversed:"timestamp" %}
<tr>
<td><a href="{{scrobble.get_absolute_url}}">{{scrobble.local_timestamp}}</a></td>
<td>{% if scrobble.long_play_complete == True %}Yes{% endif %}</td>
<td>{% if scrobble.long_play_complete == True %}Yes{% else %}No{% endif %}</td>
<td>{% if scrobble.in_progress %}Now reading{% else %}{{scrobble.session_pages_read}}{% endif %}</td>
<td>{% for author in scrobble.book.authors.all %}<a href="{{author.get_absolute_url}}">{{author}}</a>{% if not forloop.last %}, {% endif %}{% endfor %}</td>
</tr>