From 0079f46a80d47ed2082daf022b08341bd5c256cf Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Mon, 17 Jun 2024 16:28:45 +0100 Subject: [PATCH] Improve display of countries on stats page --- templates/trip/stats.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/trip/stats.html b/templates/trip/stats.html index baae8ea..6fe8a18 100644 --- a/templates/trip/stats.html +++ b/templates/trip/stats.html @@ -7,7 +7,7 @@ {% block title %}{{ heading }} - Edward Betts{% endblock %} {% block content %} -
+

Trip statistics

Trips: {{ count }}
Total distance: {{ format_distance(total_distance) }}
@@ -25,7 +25,7 @@
Trips in {{ year }}: {{ year_stats.count }}
{{ countries | count }} countries visited in {{ year }}: {% for c in countries %} - {{ c.flag }} {{ c.name }} + {{ c.flag }} {{ c.name }} {% endfor %}
Flights in {{ year }}: {{ year_stats.flight_count }}