summaryrefslogtreecommitdiff
path: root/templates/_backend.html.ep
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2024-08-20 19:44:51 +0200
committerBirte Kristina Friesel <derf@finalrewind.org>2024-08-20 19:44:51 +0200
commit465c131a6324c4c1d151d82829384652e1740238 (patch)
tree290892b1b42740556abf38e9864ffae96c5772e7 /templates/_backend.html.ep
parentad9d8e40b3677342cb7409f3ee5d769c6d72b228 (diff)
Backend selection: add coverage maps4.29.13
Diffstat (limited to 'templates/_backend.html.ep')
-rw-r--r--templates/_backend.html.ep29
1 files changed, 0 insertions, 29 deletions
diff --git a/templates/_backend.html.ep b/templates/_backend.html.ep
deleted file mode 100644
index ee14448..0000000
--- a/templates/_backend.html.ep
+++ /dev/null
@@ -1,29 +0,0 @@
-<div class="container">
- <p>
- Das Backend bestimmt die Datenquelle für Stations- und Zuginformationen.
- Innerhalb Deutschlands ist <strong>Deutsche Bahn</strong> meist eine gute Wahl: IRIS-TTS kennt ausschließlich Schienenverkehr im Bahnnetz, während HAFAS auch Nahverkehr unterstützt.
- Die anderen Backends bieten sich für Fahrten im Ausland oder im zugehörigen Verkehrsverbund an und sind werden teils nicht perfekt unterstützt.
- </p>
- <p>
- % my $prev_type = 'IRIS-TTS';
- % for my $backend (@{$backends}) {
- % if ($backend->{type} ne $prev_type) {
- % $prev_type = $backend->{type};
- </p><p>
- <%= $prev_type %>:<br/>
- % }
- % my $class = 'button';
- % if (param('hafas')) {
- % if ($backend->{hafas} and $backend->{shortname} eq param('hafas')) {
- % $class .= ' button-active';
- % }
- % }
- % else {
- % if (not $backend->{hafas}) {
- % $class .= ' button-active';
- % }
- % }
- <a class="<%= $class %>" href="<%= url_for(q{/})->query({ hafas => $backend->{hafas} ? $backend->{shortname} : q{} }) %>"><%= $backend->{shortname} // 'IRIS-TTS' %> – <%= $backend->{name} %></a>
- % }
- </p>
-</div>