From ce43111b03d116b41bc05472754168aa9ec260bd Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Fri, 5 Sep 2025 17:14:21 -0700 Subject: [PATCH] templates: Fix invalid inside (missing ). Signed-off-by: Anders Kaseorg --- templates/corporate/activity/activity_table.html | 8 +++++--- .../corporate/activity/installation_activity_table.html | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/templates/corporate/activity/activity_table.html b/templates/corporate/activity/activity_table.html index bd3cc033ea..177968c03c 100644 --- a/templates/corporate/activity/activity_table.html +++ b/templates/corporate/activity/activity_table.html @@ -33,9 +33,11 @@ {% if data.totals %} - {% for total in data.totals %} - {{ total }} - {% endfor %} + + {% for total in data.totals %} + {{ total }} + {% endfor %} + {% endif %} diff --git a/templates/corporate/activity/installation_activity_table.html b/templates/corporate/activity/installation_activity_table.html index fcfe4569ab..3831ab4e31 100644 --- a/templates/corporate/activity/installation_activity_table.html +++ b/templates/corporate/activity/installation_activity_table.html @@ -143,8 +143,10 @@ {% endfor %} - {% for total in totals %} - {{ total }} - {% endfor %} + + {% for total in totals %} + {{ total }} + {% endfor %} +