From 3ce1cfc55f03ccb67b3bab13112d4594974552a4 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 31 Mar 2019 19:32:41 +0200 Subject: Select journeys by ID --- templates/history.html.ep | 2 +- templates/landingpage.html.ep | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'templates') diff --git a/templates/history.html.ep b/templates/history.html.ep index 5fc3907..8f63296 100644 --- a/templates/history.html.ep +++ b/templates/history.html.ep @@ -79,7 +79,7 @@ % for my $travel (@{$journeys}) { % if ($travel->{completed}) { - % my $detail_link = '/journey/' . current_user()->{id} . '-' . $travel->{checkin}->epoch . '-' . $travel->{checkout}->epoch; + % my $detail_link = '/journey/' . current_user()->{id} . '-' . $travel->{ids}->[1]; <%= $travel->{sched_departure}->strftime('%d.%m.%Y') %> diff --git a/templates/landingpage.html.ep b/templates/landingpage.html.ep index dc559f9..2cd8f68 100644 --- a/templates/landingpage.html.ep +++ b/templates/landingpage.html.ep @@ -105,7 +105,7 @@ % for my $travel (get_user_travels(limit => 1)) { % if ($travel->{completed}) { - % my $detail_link = '/journey/' . current_user()->{id} . '-' . $travel->{checkin}->epoch . '-' . $travel->{checkout}->epoch; + % my $detail_link = '/journey/' . current_user()->{id} . '-' . $travel->{ids}->[1]; <%= $travel->{sched_departure}->strftime('%d.%m.%Y') %> <%= $travel->{type} %> <%= $travel->{line} // $travel->{no} %> <%= $travel->{from_name} %> → <%= $travel->{to_name} %> -- cgit v1.2.3