diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2024-01-06 07:56:08 +0100 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2024-01-06 07:56:08 +0100 |
commit | 6d8511731a1b6d84d2a6b013e27569af03160550 (patch) | |
tree | bbf05e2ff8d6c737f8b89825d4e7e3d6aa584cdd /templates | |
parent | 503bdc30e4e2fe5dce9ba5c4b24250e31931d8b0 (diff) |
train details: add date switcher
Diffstat (limited to 'templates')
-rw-r--r-- | templates/_train_details.html.ep | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/_train_details.html.ep b/templates/_train_details.html.ep index 849af3b..3e60612 100644 --- a/templates/_train_details.html.ep +++ b/templates/_train_details.html.ep @@ -203,7 +203,10 @@ </ul> % } % if ($departure->{route_pre_diff} and $departure->{route_post_diff}) { -%= l 'Fahrtverlauf' +%= l 'Fahrtverlauf am' + <a href="<%= url_for('train', train => stash('train'))->query({detailed => param('detailed'), past => param('past'), rt => param('rt'), hafas => param('hafas'), date => $departure->{date}->clone->subtract(days => 1)->strftime('%d.%m.%Y'), highlight => param('highlight') // stash('station')}) %>">◀</a> +%= $departure->{date}->strftime('%d.%m.%Y') + <a href="<%= url_for('train', train => stash('train'))->query({detailed => param('detailed'), past => param('past'), rt => param('rt'), hafas => param('hafas'), date => $departure->{date}->clone->add(days => 1)->strftime('%d.%m.%Y'), highlight => param('highlight') // stash('station')}) %>">▶</a> <ul class="mroute"> % for my $stop (@{$departure->{route_pre_diff}}) { <li class="<%= $stop->{isPast} ? 'past-stop' : 'future-stop' %>"> |