From 10eccc6498728f6d561accc0a1a796825596049d Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Thu, 6 Feb 2025 11:13:57 +0100
Subject: [PATCH] Fix broken account input datalist.

---
 templates/edit_structured.tmpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/templates/edit_structured.tmpl b/templates/edit_structured.tmpl
index 7ffa642..9d6273a 100644
--- a/templates/edit_structured.tmpl
+++ b/templates/edit_structured.tmpl
@@ -125,7 +125,7 @@ window.onload = update_form;
 </table>
 </form>
 <datalist id="all_accounts">
-{% for acc in accounts %}
+{% for acc in all_accounts %}
 <option value="{{acc}}">{{acc}}</a>
 {% endfor %}
 </datalist>
-- 
2.30.2