From a989d0a6b31a21c579f135831c13fca088c1ef6c Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Sat, 18 May 2024 05:03:03 +0200
Subject: [PATCH] Fix broken template.

---
 templates/day.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/templates/day.html b/templates/day.html
index ce16f28..8929058 100644
--- a/templates/day.html
+++ b/templates/day.html
@@ -146,7 +146,7 @@ add todo: <input name="new_todo" list="processes" autocomplete="off" />
 {% endfor %}
 {% set list_name = "todos_for_%s"|format(condition.id_) %}
 <td><input name="new_todo" list="{{list_name}}" autocomplete="off" /></td>
-{{ macros.datalist_of_direct_titles(list_name, enablers_for[condition.id_]) }}
+{{ macros.datalist_of_titles(list_name, enablers_for[condition.id_]) }}
 </td>
 </tr>
 {% endfor %}
-- 
2.30.2