From 58d1dc9dc53679265850272524be5c963416c0cb Mon Sep 17 00:00:00 2001 From: George Katsikas <giorgakis.katsikas@gmail.com> Date: Tue, 26 Mar 2024 10:14:19 +0100 Subject: [PATCH] enable markup for notes --- scipost_django/pins/templates/pins/_hx_note_item.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scipost_django/pins/templates/pins/_hx_note_item.html b/scipost_django/pins/templates/pins/_hx_note_item.html index 62f60773c..66dfac85a 100644 --- a/scipost_django/pins/templates/pins/_hx_note_item.html +++ b/scipost_django/pins/templates/pins/_hx_note_item.html @@ -1,3 +1,5 @@ +{% load automarkup %} + <div class="my-1"> <div class="d-flex justify-content-between"> <span class="fw-bold text-truncate overflow-hidden">{{ note.title }}</span> @@ -11,5 +13,5 @@ hx-delete="{% url "pins:_hx_note_delete" note.id %}">{% include "bi/trash-fill.html" %}</span> </span> </div> - <div>{{ note.description }}</div> + <div>{% automarkup note.description %}</div> </div> -- GitLab