diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/_connections.html.ep | 2 | ||||
-rw-r--r-- | templates/_connections_hafas.html.ep | 2 | ||||
-rw-r--r-- | templates/_departures_hafas.html.ep | 2 | ||||
-rw-r--r-- | templates/_departures_iris.html.ep | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/templates/_connections.html.ep b/templates/_connections.html.ep index 98be766..cd64150 100644 --- a/templates/_connections.html.ep +++ b/templates/_connections.html.ep @@ -9,7 +9,7 @@ % $link_class = 'action-cancelled-from'; % } % if ($checkin_from) { - <tr class="<%= $link_class %>" data-station="<%= $train->station_uic %>" data-train="<%= $train->train_id %>" data-dest="<%= $via->{name} %>"> + <tr class="<%= $link_class %>" data-station="<%= $train->station_uic %>" data-train="<%= $train->train_id %>" data-ts="<%= ($train->sched_departure // $train->departure)->epoch %>" data-dest="<%= $via->{name} %>"> % } % else { <tr> diff --git a/templates/_connections_hafas.html.ep b/templates/_connections_hafas.html.ep index 9322116..48a5380 100644 --- a/templates/_connections_hafas.html.ep +++ b/templates/_connections_hafas.html.ep @@ -9,7 +9,7 @@ % $link_class = 'action-cancelled-from'; % } % if ($checkin_from) { - <tr class="<%= $link_class %>" data-station="<%= $train->station_eva %>" data-train="<%= $train->id %>" data-dest="<%= $via->{name} %>"> + <tr class="<%= $link_class %>" data-station="<%= $train->station_eva %>" data-train="<%= $train->id %>" data-ts="<%= ($train->sched_datetime // $train->datetime)->epoch %>" data-dest="<%= $via->{name} %>"> % } % else { <tr> diff --git a/templates/_departures_hafas.html.ep b/templates/_departures_hafas.html.ep index ef5585a..6e1641f 100644 --- a/templates/_departures_hafas.html.ep +++ b/templates/_departures_hafas.html.ep @@ -21,7 +21,7 @@ </td> </tr> % } - <tr class="<%= $link_class %>" data-station="<%= $result->station_eva %>" data-train="<%= $result->id %>" data-tr="3"> + <tr class="<%= $link_class %>" data-station="<%= $result->station_eva %>" data-train="<%= $result->id %>" data-ts="<%= ($result->sched_datetime // $result->datetime)->epoch %>" data-tr="3"> <td> <a> <%= $result->line %> diff --git a/templates/_departures_iris.html.ep b/templates/_departures_iris.html.ep index 161d049..cecbc8a 100644 --- a/templates/_departures_iris.html.ep +++ b/templates/_departures_iris.html.ep @@ -21,7 +21,7 @@ </td> </tr> % } - <tr class="<%= $link_class %>" data-station="<%= $result->station_uic %>" data-train="<%= $result->train_id %>" data-tr="3"> + <tr class="<%= $link_class %>" data-station="<%= $result->station_uic %>" data-train="<%= $result->train_id %>" data-ts="<%= ($result->sched_departure // $result->departure)->epoch %>" data-tr="3"> <td> <a> <%= $result->line %> |