diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/_train_details.html.ep | 4 | ||||
-rw-r--r-- | templates/layouts/app.html.ep | 2 | ||||
-rw-r--r-- | templates/layouts/legacy.html.ep | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/templates/_train_details.html.ep b/templates/_train_details.html.ep index 121f46d..7ef2138 100644 --- a/templates/_train_details.html.ep +++ b/templates/_train_details.html.ep @@ -195,7 +195,7 @@ <ul class="mroute"> % for my $stop (@{$departure->{route_pre_diff}}) { <li class="<%= $stop->{isPast} ? 'past-stop' : 'future-stop' %>"> - <a href="<%= url_for('station', station => $stop->{name})->query({detailed => param('detailed'), past => param('past'), show_realtime => param('show_realtime')}) %>#<%= ($departure->{train_type} // q{x}) . ($departure->{train_no} // q{x}) %>" class=" + <a href="<%= url_for('station', station => $stop->{name})->query({detailed => param('detailed'), past => param('past'), rt => param('rt')}) %>#<%= ($departure->{train_type} // q{x}) . ($departure->{train_no} // q{x}) %>" class=" % if ($stop->{isAdditional}) { additional-stop % } @@ -240,7 +240,7 @@ % } % for my $stop (@{$departure->{route_post_diff}}) { <li class="<%= $stop->{isPast} ? 'past-stop' : 'future-stop' %>"> - <a href="<%= url_for('station', station => $stop->{name})->query({detailed => param('detailed'), past => param('past'), show_realtime => param('show_realtime')}) %>#<%= ($departure->{train_type} // q{x}) . ($departure->{train_no} // q{x}) %>" class=" + <a href="<%= url_for('station', station => $stop->{name})->query({detailed => param('detailed'), past => param('past'), rt => param('rt')}) %>#<%= ($departure->{train_type} // q{x}) . ($departure->{train_no} // q{x}) %>" class=" % if ($stop->{isAdditional}) { additional-stop % } diff --git a/templates/layouts/app.html.ep b/templates/layouts/app.html.ep index f3db4a8..7b48d6d 100644 --- a/templates/layouts/app.html.ep +++ b/templates/layouts/app.html.ep @@ -145,7 +145,7 @@ Bitte eine Station aus der Liste auswählen</div> <div class="moresettings moresettings-collapsed"> <div class="field"> <div class="desc"> - %= check_box 'show_realtime' => 1, id => 'id_show_realtime' + %= check_box 'rt' => 1, id => 'id_show_realtime' <label for="id_show_realtime"> Zeiten inkl. Verspätung angeben </label> diff --git a/templates/layouts/legacy.html.ep b/templates/layouts/legacy.html.ep index 47c7e49..f2c7ca4 100644 --- a/templates/layouts/legacy.html.ep +++ b/templates/layouts/legacy.html.ep @@ -158,7 +158,7 @@ Bitte eine Station aus der Liste auswählen</div> </div> <div class="field"> <div class="desc"> - %= check_box 'show_realtime' => 1, id => 'id_show_realtime' + %= check_box 'rt' => 1, id => 'id_show_realtime' <label for="id_show_realtime"> Echtzeitangaben statt Fahrplandaten anzeigen </label> |