From 906a8a4f55f79c45555bf0b4c897383dfef7d48a Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 23 Sep 2022 19:25:17 +0200 Subject: departure board: add footer --- lib/Travelynx/Controller/Traveling.pm | 9 +++++++-- templates/departures.html.ep | 2 ++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/lib/Travelynx/Controller/Traveling.pm b/lib/Travelynx/Controller/Traveling.pm index ec728f0..1e6a868 100755 --- a/lib/Travelynx/Controller/Traveling.pm +++ b/lib/Travelynx/Controller/Traveling.pm @@ -976,7 +976,9 @@ sub station { station => $status->{station_name}, related_stations => $status->{related_stations}, connections => \@connecting_trains, - title => "travelynx: $status->{station_name}", + title => "travelynx: $status->{station_name}", + version => $self->app->config->{version} + // 'UNKNOWN', ); } )->catch( @@ -987,7 +989,9 @@ sub station { results => \@results, station => $status->{station_name}, related_stations => $status->{related_stations}, - title => "travelynx: $status->{station_name}", + title => "travelynx: $status->{station_name}", + version => $self->app->config->{version} + // 'UNKNOWN', ); } )->wait; @@ -1000,6 +1004,7 @@ sub station { station => $status->{station_name}, related_stations => $status->{related_stations}, title => "travelynx: $status->{station_name}", + version => $self->app->config->{version} // 'UNKNOWN', ); } } diff --git a/templates/departures.html.ep b/templates/departures.html.ep index 3ef081b..35b5cfd 100644 --- a/templates/departures.html.ep +++ b/templates/departures.html.ep @@ -111,3 +111,5 @@ + +%= include '_footer', version => stash('version') -- cgit v1.2.3