[scrobbles] Fix adding comments to webpages
Some checks failed
build & deploy / test (push) Successful in 1m40s
build & deploy / deploy (push) Has been cancelled

This commit is contained in:
2026-03-17 13:24:50 -04:00
parent 48e13af2e8
commit 653aabfbb1
4 changed files with 43 additions and 24 deletions

View File

@ -11,6 +11,17 @@
<h1>{{ object.media_obj }} - {{object.media_type}}</h1>
{% if object.notes %}
<details class="mb-3">
<summary>Notes ({{ object.notes|length }})</summary>
<ul class="mt-2">
{% for note in object.notes %}
<li>{{ note }}</li>
{% endfor %}
</ul>
</details>
{% endif %}
<!-- Your existing detail page content -->
{% if object.logdata.avg_seconds_per_page %}
<p>Rate: {{object.logdata.avg_seconds_per_page}}s per page</p>