home · contact · privacy
Fix broken enabler addition in Day view.
authorChristian Heller <c.heller@plomlompom.de>
Wed, 15 May 2024 06:56:30 +0000 (08:56 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 15 May 2024 06:56:30 +0000 (08:56 +0200)
templates/day.html

index b816f35c3ddbc5057ccf3f2fe28f20ba7045db6d..f6e22650ddc57fd1e0553e01e9f3f4d73c5dd794 100644 (file)
@@ -149,7 +149,7 @@ add todo: <input name="new_todo" list="processes" autocomplete="off" />
 {% endif %}
 {% endfor %}
 
-<td><input list="todos_for_{{condition.id_}}" /></td>
+<td><input name="new_todo" list="todos_for_{{condition.id_}}" /></td>
 <datalist name="new_todo" id="todos_for_{{condition.id_}}" />
 {% for process in enablers_for[condition.id_] %}
 <option value="{{process.id_}}">{{process.title.newest|e}}</option>