2023-10-22 12:43:05 +00:00
|
|
|
<ul class="collection departures">
|
2023-03-27 19:03:25 +00:00
|
|
|
% my $orientation_bar_shown = param('train');
|
2023-10-21 07:30:26 +00:00
|
|
|
% my $now_epoch = now->epoch;
|
2023-03-27 19:03:25 +00:00
|
|
|
% for my $result (@{$results}) {
|
2023-10-22 12:43:05 +00:00
|
|
|
% my $row_class = '';
|
2023-03-27 19:03:25 +00:00
|
|
|
% my $link_class = 'action-checkin';
|
|
|
|
% if ($result->is_cancelled) {
|
2023-10-22 12:43:05 +00:00
|
|
|
% $row_class = "cancelled";
|
2023-03-27 19:03:25 +00:00
|
|
|
% $link_class = 'action-cancelled-from';
|
|
|
|
% }
|
|
|
|
% if (not $orientation_bar_shown and $result->datetime->epoch < $now_epoch) {
|
|
|
|
% $orientation_bar_shown = 1;
|
2023-10-22 12:43:05 +00:00
|
|
|
<li class="collection-item" id="now">
|
|
|
|
<strong class="dep-time">
|
2023-10-21 07:30:26 +00:00
|
|
|
%= now->strftime('%H:%M')
|
2023-10-22 12:43:05 +00:00
|
|
|
</strong>
|
|
|
|
<strong>— Anfragezeitpunkt —</strong>
|
|
|
|
</li>
|
2023-03-27 19:03:25 +00:00
|
|
|
% }
|
2023-10-22 12:43:05 +00:00
|
|
|
<li class="collection-item <%= $link_class %> <%= $row_class %>"
|
|
|
|
data-station="<%= $result->station_eva %>"
|
|
|
|
data-train="<%= $result->id %>"
|
|
|
|
data-ts="<%= ($result->sched_datetime // $result->datetime)->epoch %>"
|
|
|
|
>
|
|
|
|
<span class="dep-time">
|
2023-03-27 19:03:25 +00:00
|
|
|
%= $result->datetime->strftime('%H:%M')
|
|
|
|
% if ($result->delay) {
|
|
|
|
(<%= sprintf('%+d', $result->delay) %>)
|
|
|
|
% }
|
2023-09-09 07:50:41 +00:00
|
|
|
% elsif (not defined $result->delay and not $result->is_cancelled) {
|
|
|
|
<i class="material-icons" aria-label="Keine Echtzeitdaten vorhanden" style="font-size: 16px;">gps_off</i>
|
|
|
|
% }
|
2023-10-22 12:43:05 +00:00
|
|
|
</span>
|
|
|
|
<a class="dep-line <%= (split(/ /, $result->line))[0] %>">
|
|
|
|
%= $result->line
|
|
|
|
</a>
|
|
|
|
<span class="dep-dest">
|
|
|
|
%= $result->destination
|
|
|
|
% }
|
|
|
|
</span>
|
|
|
|
</li>
|
2023-03-27 19:03:25 +00:00
|
|
|
% }
|
2023-10-22 12:43:05 +00:00
|
|
|
</ul>
|