[scrobbles] Fix note display to be sticky notes
This commit is contained in:
@ -12,11 +12,13 @@
|
||||
|
||||
<h1>{{ object.media_obj }} - {{object.media_type}}</h1>
|
||||
|
||||
{% with notes_string=object.logdata.notes_as_str %}
|
||||
{% if notes_string %}
|
||||
{% with notes_html=object.logdata.notes_as_html %}
|
||||
{% if notes_html %}
|
||||
<div class="mb-3">
|
||||
<h5>Notes</h5>
|
||||
<pre>{{ notes_string }}</pre>
|
||||
<div class="sticky-notes-container">
|
||||
{{ notes_html|safe }}
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endwith %}
|
||||
|
||||
Reference in New Issue
Block a user