diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2020-01-31 18:16:00 +0100 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2020-01-31 18:16:00 +0100 |
commit | aa7a7db2bcd6ae8cf0caef37d436bcb2ae162d5b (patch) | |
tree | 65c2b81918636d935f4dfd7424812a4641f635b3 /templates/history_map.html.ep | |
parent | 7e92e6b5d454ca61c77ed4ee217d179fc0038459 (diff) |
map: show polylines by default
Diffstat (limited to 'templates/history_map.html.ep')
-rw-r--r-- | templates/history_map.html.ep | 32 |
1 files changed, 29 insertions, 3 deletions
diff --git a/templates/history_map.html.ep b/templates/history_map.html.ep index c0eea4c..51f002e 100644 --- a/templates/history_map.html.ep +++ b/templates/history_map.html.ep @@ -11,8 +11,34 @@ %= include '_map', station_coordinates => $station_coordinates, polyline_groups => $polyline_groups -%= form_for '/history/map' => (method => 'POST') => begin - %= csrf_field +%= form_for '/history/map' => begin + <p> + Detailgrad und Filter: + </p> + <div class="row"> + <div class="input-field col s12"> + <label> + %= radio_button route_type => 'polyline' + <span>Nur Zugfahrten mit bekanntem Streckenverlauf eintragen</span> + </label> + </div> + </div> + <div class="row"> + <div class="input-field col s12"> + <label> + %= radio_button route_type => 'polybee' + <span>Streckenverlauf wenn bekannt, sonst Luftlinie zwischen Unterweghalten</span> + </label> + </div> + </div> + <div class="row"> + <div class="input-field col s12"> + <label> + %= radio_button route_type => 'beeline' + <span>Immer Luftlinie zwischen Unterwegshalten zeigen</span> + </label> + </div> + </div> <div class="row"> <div class="input-field col s12"> <label> @@ -23,7 +49,7 @@ </div> <div class="row"> <div class="col s12 center-align"> - <button class="btn wave-effect waves-light" type="submit" name="action" value="go"> + <button class="btn wave-effect waves-light" type="submit"> Anzeigen </button> </div> |