travelynx/templates/_departures_hafas.html.ep

44 lines
1.3 KiB
Text
Raw Normal View History

<ul class="collection departures">
2023-03-27 19:03:25 +00:00
% my $orientation_bar_shown = param('train');
% my $now_epoch = now->epoch;
2023-03-27 19:03:25 +00:00
% for my $result (@{$results}) {
% my $row_class = '';
2023-03-27 19:03:25 +00:00
% my $link_class = 'action-checkin';
% if ($result->is_cancelled) {
% $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;
<li class="collection-item" id="now">
<strong class="dep-time">
%= now->strftime('%H:%M')
</strong>
<strong>— Anfragezeitpunkt —</strong>
</li>
2023-03-27 19:03:25 +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) %>)
% }
% 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>
% }
</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
% }
</ul>