diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-03-31 19:32:41 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-03-31 19:32:41 +0200 |
commit | 3ce1cfc55f03ccb67b3bab13112d4594974552a4 (patch) | |
tree | 256d536d98b49b586f357575d7d580ae2cddb7f4 /templates/history.html.ep | |
parent | 76f6922e825ea4f4f2ca0054bdd29ccd8e9edeca (diff) |
Select journeys by ID
Diffstat (limited to 'templates/history.html.ep')
-rw-r--r-- | templates/history.html.ep | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ <tbody> % 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]; <tr> <td><%= $travel->{sched_departure}->strftime('%d.%m.%Y') %></td> <td> |