[scrobbles] Fix adding comments to webpages
This commit is contained in:
@ -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>
|
||||
|
||||
Reference in New Issue
Block a user