From 2517f8e9b942325f5096b46f4716c58b35abd03f Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Sat, 17 Jan 2026 19:27:28 +1100 Subject: [PATCH] fix up inconsistent use of col-1 and col --- templates/bills.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/bills.html b/templates/bills.html index 9a01d23..a1f78c6 100644 --- a/templates/bills.html +++ b/templates/bills.html @@ -25,7 +25,7 @@ {% for bt in total %} - {% for yr in range( 2025, 2032 ) %} + {% for yr in range( FIRST_YEAR, END_YEAR+1 ) %} {% if yr in total[bt] %}
 {{bt}}: {{total[bt][yr]}} @@ -62,7 +62,7 @@
- {% for yr in range( 2025, 2032 ) %} + {% for yr in range( FIRST_YEAR, END_YEAR+1 ) %}
@@ -119,7 +119,7 @@ - {% for yr in range( 2025, 2032 ) %} + {% for yr in range( FIRST_YEAR, END_YEAR+1 ) %}
{% endfor %} @@ -129,8 +129,8 @@ {% endfor %}
-
-
+
+
{% for yr in range( this_year, END_YEAR+1) %} {% set tot=namespace( sum=0 ) %}