diff options
Diffstat (limited to 'templates/_departures_hafas.html.ep')
-rw-r--r-- | templates/_departures_hafas.html.ep | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/templates/_departures_hafas.html.ep b/templates/_departures_hafas.html.ep new file mode 100644 index 0000000..5b1a057 --- /dev/null +++ b/templates/_departures_hafas.html.ep @@ -0,0 +1,44 @@ +<table class="striped"> +<tbody> +% my $orientation_bar_shown = param('train'); +% my $now_epoch = now()->epoch; +% 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> + <td> + </td> + <td> + — Anfragezeitpunkt — + </td> + <td> + </td> + </tr> + % } + <tr class="<%= $link_class %>" data-station="<%= $result->station_eva %>" data-train="<%= $result->id %>" data-tr="3"> + <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) %>) + % } + </td> + </tr> +% } +</tbody> +</table> |