travelynx/templates/_departures_hafas.html.ep

49 lines
1.3 KiB
Text
Raw Normal View History

<table class="striped departures">
2023-03-27 19:03:25 +00:00
<tbody>
% my $orientation_bar_shown = param('train');
% my $now_epoch = now->epoch;
2023-03-27 19:03:25 +00:00
% for my $result (@{$results}) {
% my $td_class = '';
% my $link_class = 'action-checkin';
% if ($result->is_cancelled) {
% $td_class = "cancelled";
% $link_class = 'action-cancelled-from';
% }
% if (not $orientation_bar_shown and $result->datetime->epoch < $now_epoch) {
% $orientation_bar_shown = 1;
<tr class="now">
2023-03-27 19:03:25 +00:00
<td>
</td>
<td>
<strong>— Anfragezeitpunkt —</strong>
2023-03-27 19:03:25 +00:00
</td>
<td><strong>
%= now->strftime('%H:%M')
</strong></td>
2023-03-27 19:03:25 +00:00
</tr>
% }
<tr class="<%= $link_class %>" data-station="<%= $result->station_eva %>" data-train="<%= $result->id %>" data-ts="<%= ($result->sched_datetime // $result->datetime)->epoch %>" data-tr="3">
2023-03-27 19:03:25 +00:00
<td>
<a>
<%= $result->line %>
</a>
</td>
<td class="<%= $td_class %>">
<a>
<%= $result->destination %>
</a>
</td>
<td class="<%= $td_class %>">
%= $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>
% }
2023-03-27 19:03:25 +00:00
</td>
</tr>
% }
</tbody>
</table>