From fab478dc61fe5ecac7bc1008919af115f35d3fd4 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sun, 14 Jan 2024 10:32:52 +0000 Subject: [PATCH] Rename trips.html template to trip_list.html --- templates/{trips.html => trip_list.html} | 0 web_view.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename templates/{trips.html => trip_list.html} (100%) diff --git a/templates/trips.html b/templates/trip_list.html similarity index 100% rename from templates/trips.html rename to templates/trip_list.html diff --git a/web_view.py b/web_view.py index 1b57fb9..16daefe 100755 --- a/web_view.py +++ b/web_view.py @@ -193,7 +193,7 @@ def trip_list() -> str: route["geojson"] = agenda.trip.read_geojson(route.pop("geojson_filename")) return flask.render_template( - "trips.html", + "trip_list.html", current=current, past=past, future=future,