From a8652d881c08e296647eb80df0c91a7584bebe4a Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Mon, 3 Nov 2025 13:05:09 +0000 Subject: [PATCH] Show country flags in Schengen compliance history --- templates/schengen_report.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/schengen_report.html b/templates/schengen_report.html index 9222785..b34c02d 100644 --- a/templates/schengen_report.html +++ b/templates/schengen_report.html @@ -162,8 +162,8 @@ {{ trip_date.strftime('%Y-%m-%d') }} - {% for trip_obj in trip_list if trip_obj.start == trip_date %} - {{ trip_obj.title }} + {% for trip in trip_list if trip.start == trip_date %} + {{ trip.title }} {{ trip.country_flags }} {% endfor %}