diff --git a/templates/history_map.html.ep b/templates/history_map.html.ep index 833bf80..57ba81f 100644 --- a/templates/history_map.html.ep +++ b/templates/history_map.html.ep @@ -1,22 +1,31 @@
- % if (stash('year')) { - Fahrten im Jahr <%= stash('year') %> - % } - % elsif (param('filter_from') and param('filter_to')) { - Fahrten zwischen dem <%= param('filter_from') %> und dem <%= param('filter_to') %> - % } - % elsif (param('filter_from')) { - Fahrten ab dem <%= param('filter_from') %> - % } - % elsif (param('filter_to')) { - Fahrten bis einschließlich <%= param('filter_to') %> - % } - % elsif (@{$station_coordinates}) { - Alle bisherigen Fahrten + % if (@{$station_coordinates}) { + Fahrten % } % else { - Keine Fahrten gefunden. + Keine Fahrten + % } + % if (param('filter_type')) { + mit <%= param('filter_type') %> + % } + % if (stash('year')) { + im Jahr <%= stash('year') %> + % } + % elsif (param('filter_from') and param('filter_to')) { + zwischen dem <%= param('filter_from') %> und dem <%= param('filter_to') %> + % } + % elsif (param('filter_from')) { + ab dem <%= param('filter_from') %> + % } + % elsif (param('filter_to')) { + bis einschließlich <%= param('filter_to') %> + % } + % elsif (@{$station_coordinates}) { + in travelynx + % } + % if (not @{$station_coordinates}) { + gefunden % }
@@ -92,7 +101,7 @@
%= text_field 'filter_type', id => 'filter_type' - +