From 2e1cf0ce84d0819438f0065da00b7818e79701ad Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sat, 18 May 2024 12:42:41 +0200 Subject: [PATCH] Show current trip on future trip map --- web_view.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_view.py b/web_view.py index 293cba4..8131935 100755 --- a/web_view.py +++ b/web_view.py @@ -319,7 +319,7 @@ def trip_future_list() -> str: future = [item for item in trip_list if item.start > today] - coordinates, routes = agenda.trip.get_coordinates_and_routes(future) + coordinates, routes = agenda.trip.get_coordinates_and_routes(current + future) return flask.render_template( "trip/list.html",