From d75351b30c38dc22e0071e18dc68be551eb628a7 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 5 Oct 2018 16:33:59 +0200 Subject: Use POST requests to modify data --- templates/checkin.html.ep | 54 --------------------------------------- templates/checkout.html.ep | 31 ---------------------- templates/departures.html.ep | 8 +++--- templates/landingpage.html.ep | 2 +- templates/layouts/default.html.ep | 1 + 5 files changed, 7 insertions(+), 89 deletions(-) delete mode 100644 templates/checkin.html.ep delete mode 100644 templates/checkout.html.ep (limited to 'templates') diff --git a/templates/checkin.html.ep b/templates/checkin.html.ep deleted file mode 100644 index 7e68a0b..0000000 --- a/templates/checkin.html.ep +++ /dev/null @@ -1,54 +0,0 @@ -% if ($error) { -
-
-
-
- I am Error -

<%= $error %>

-
-
- % if (param('station')) { - Zurück zu den Abfahrten - % } - % else { - Zur Hauptseite - % } -
-
-
-% } -% else { -
-
-
-
- Eingecheckt in <%= $train->line %> -

Abfahrt um <%= $train->sched_departure->strftime('%H:%M') %> - % if ($train->departure_delay) { - +<%= $train->departure_delay %> - % } -

-
-
-
-
-
-
- Weitere Route: -
-
-
-
- - - % for my $station ($train->route_post) { - - - - - % } - -
<%= $station %>hier auschecken
-
-
-% } diff --git a/templates/checkout.html.ep b/templates/checkout.html.ep deleted file mode 100644 index 1b5a4f2..0000000 --- a/templates/checkout.html.ep +++ /dev/null @@ -1,31 +0,0 @@ -% if ($error) { -
-
-
-
- I am Error -

<%= $error %>

-
-
- Ohne Echtzeitdaten auschecken - % if (param('station')) { - Zurück zu den Abfahrten - % } - % else { - Zur Hauptseite - % } -
-
-
-% } -% else { -
-
-
-
- Erfolgreich ausgecheckt -
-
-
-
-% } diff --git a/templates/departures.html.ep b/templates/departures.html.ep index bbe0149..bd11d15 100644 --- a/templates/departures.html.ep +++ b/templates/departures.html.ep @@ -9,7 +9,9 @@ ab <%= $status->{station_name} %>

% } @@ -28,12 +30,12 @@ % for my $result (@{$results}) { - + <%= $result->line %> - + <%= $result->destination %> diff --git a/templates/landingpage.html.ep b/templates/landingpage.html.ep index 0207118..a33d83a 100644 --- a/templates/landingpage.html.ep +++ b/templates/landingpage.html.ep @@ -13,7 +13,7 @@ % my $is_after = 0; % for my $station (@{$status->{route_after}}) { - <%= $station %> + <%= $station %> % } diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep index 5e0091c..d11bd2a 100644 --- a/templates/layouts/default.html.ep +++ b/templates/layouts/default.html.ep @@ -9,6 +9,7 @@ %= stylesheet '/static/css/local.css' %= javascript '/static/js/jquery-2.2.4.min.js' %= javascript '/static/js/materialize.min.js' + %= javascript '/static/js/travelynx-actions.js' -- cgit v1.2.3