From dc9717a59b3a69def02ef981b4c35b955ee56fd9 Mon Sep 17 00:00:00 2001 From: tonym Date: Sat, 6 Jun 2026 16:44:58 -0500 Subject: [PATCH] Fix /month 500: malformed Jinja in month.html budget total budgeted_by_cat.values( | money|sum) -> budgeted_by_cat.values()|sum|money Pre-existing template syntax error, unrelated to storage. Co-Authored-By: Claude Opus 4.8 --- templates/month.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/month.html b/templates/month.html index 15d2102..fedfd0c 100644 --- a/templates/month.html +++ b/templates/month.html @@ -182,7 +182,7 @@ Total - {% if budgeted_by_cat %}${{ budgeted_by_cat.values( | money|sum) }}{% endif %} + {% if budgeted_by_cat %}${{ budgeted_by_cat.values()|sum|money }}{% endif %} ${{ total_spending | money }}