[templates} Fix escaping HTML bugs in notes]
All checks were successful
build & deploy / test (push) Successful in 1m53s
build & deploy / deploy (push) Successful in 26s

This commit is contained in:
2026-04-12 12:48:22 -04:00
parent 88178e5ad2
commit 49a2429a4c
6 changed files with 15 additions and 13 deletions

View File

@ -190,7 +190,7 @@
{% for scrobble in scrobbles.all %}
<tr>
<td><a href={{scrobble.get_absolute_url}}>{{scrobble.local_timestamp}}</a></td>
<td>{% if scrobble.logdata.notes %}{{ scrobble.logdata.notes_as_str|safe }}{% endif %}
<td>{% if scrobble.logdata.notes %}{{ scrobble.logdata.notes_as_str }}{% endif %}
</tr>
{% endfor %}
</tbody>