From 1ba41db376e6875fa54278a41e253c34dc0f5c65 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Fri, 20 Oct 2023 18:04:32 +0200 Subject: frontend: add train timestamps to checkin action (preparations for more flexible checkin time frames) --- public/static/js/travelynx-actions.js | 2 ++ templates/_connections.html.ep | 2 +- templates/_connections_hafas.html.ep | 2 +- templates/_departures_hafas.html.ep | 2 +- templates/_departures_iris.html.ep | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/public/static/js/travelynx-actions.js b/public/static/js/travelynx-actions.js index 437ad60..e4d69dc 100644 --- a/public/static/js/travelynx-actions.js +++ b/public/static/js/travelynx-actions.js @@ -185,6 +185,7 @@ function tvly_reg_handlers() { station: link.data('station'), train: link.data('train'), dest: link.data('dest'), + ts: link.data('ts'), }; tvly_run(link, req); }); @@ -223,6 +224,7 @@ function tvly_reg_handlers() { var req = { action: 'cancelled_from', station: link.data('station'), + ts: link.data('ts'), train: link.data('train'), }; tvly_run(link, req); 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) { - + % } % else { 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) { - + % } % else { 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 @@ % } - + <%= $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 @@ % } - + <%= $result->line %> -- cgit v1.2.3