From 3457f8f96396cf4c16676b4e8240dc4ba22a7df2 Mon Sep 17 00:00:00 2001 From: Amolith Date: Wed, 18 Mar 2026 23:01:39 -0600 Subject: [PATCH] Improve work log entry rendering with visual separation --- templates/task.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/templates/task.html b/templates/task.html index 874674ea7bf5ef88d2274cba02c4a0a1e3edec61..cc78037fe744f4692342bd7bd694af36a7ffe5d6 100644 --- a/templates/task.html +++ b/templates/task.html @@ -104,7 +104,13 @@
Work log ({{ task.logs.len() }}) {% for log in task.logs %} -
— {{ log.message|safe }}
+
+

+
{{ log.message|safe }}
+
+ {% if !loop.last %} +
+ {% endif %} {% endfor %}