summaryrefslogtreecommitdiff
path: root/templates/_suggestions_efa.html.ep
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2025-12-26 11:38:40 +0100
committerBirte Kristina Friesel <derf@finalrewind.org>2025-12-26 11:38:40 +0100
commitcb8d90be7e405d251dbb7f615701b69f4674e1ec (patch)
tree429c9ad964fe8a7636924bf44bcad3346da0cb23 /templates/_suggestions_efa.html.ep
parent7419eab1f7cb680a6a950b617096cb75ad429c43 (diff)
EFA suggestions: show expected arrival time2.17.39
Diffstat (limited to 'templates/_suggestions_efa.html.ep')
-rw-r--r--templates/_suggestions_efa.html.ep5
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/_suggestions_efa.html.ep b/templates/_suggestions_efa.html.ep
index 68fb4a9..bca5d74 100644
--- a/templates/_suggestions_efa.html.ep
+++ b/templates/_suggestions_efa.html.ep
@@ -1,6 +1,6 @@
<ul class="collection departures connections">
% for my $res (@{$suggestions}) {
- % my ($dep, $dest) = @{$res};
+ % my ($dep, $dest, $via_arr) = @{$res};
% my $row_class = '';
% my $link_class = 'action-checkin';
% if ($dep->is_cancelled) {
@@ -25,6 +25,9 @@
% else {
%= $dep->datetime->strftime('%H:%M')
% }
+ % if ($via_arr) {
+ → <%= $via_arr->strftime('%H:%M') %>
+ % }
% if ($dep->delay) {
%= sprintf('(%+d)', $dep->delay)
% }