diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2024-06-12 21:10:48 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2024-06-12 21:10:48 +0200 |
commit | 29fb9c3a7ff1983efb441b2c47d1264d6d1b91c7 (patch) | |
tree | 677fd089b6af9fb4a257a5a00111efa1db31350a /templates/app.html.ep | |
parent | ec2fa31a0f26a99e5d54da75c40a56261b692f90 (diff) |
Use explicit hafas=DB links4.27.4
Diffstat (limited to 'templates/app.html.ep')
-rw-r--r-- | templates/app.html.ep | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/app.html.ep b/templates/app.html.ep index 214bee1..e81191b 100644 --- a/templates/app.html.ep +++ b/templates/app.html.ep @@ -53,9 +53,9 @@ > % } % if (param('hafas')) { - <a href="/z/<%= Mojo::Util::url_escape($departure->{journey_id}) . '?hafas=1&highlight=' . Mojo::Util::url_escape($departure->{station} // $station) %>"> + <a href="/z/<%= Mojo::Util::url_escape($departure->{journey_id}) . '?hafas=' . Mojo::Util::url_escape(param('hafas')) . '&highlight=' . Mojo::Util::url_escape($departure->{station} // $station) %>"> % } -% else { +% elsif (not param('efa')) { <a href="/z/<%= Mojo::Util::url_escape(($departure->{train_type} // q{}) . ' ' . ($departure->{train_no} // $departure->{train} // q{})) . '/' . Mojo::Util::url_escape($departure->{station} // $station) %>"> % } <div class="anchor" id="<%= ($departure->{train_type} // q{x}) . ($departure->{train_no} // q{x}) %>"></div> @@ -177,7 +177,9 @@ %= $route_str </span> % } - </a> +% if (not param('efa')) { + </a> +% } </li> % } |