mirror of
https://github.com/derf/travelynx
synced 2024-11-10 23:14:16 +00:00
31 lines
746 B
Text
31 lines
746 B
Text
<div class="row">
|
|
<div class="col s12">
|
|
% if (@{$station_coordinates}) {
|
|
Alle bisherigen Zugfahrten
|
|
% }
|
|
% else {
|
|
Keine Zugfahrten gefunden.
|
|
% }
|
|
</div>
|
|
</div>
|
|
|
|
%= include '_map', station_coordinates => $station_coordinates, station_pairs => $station_pairs
|
|
|
|
%= form_for '/history/map' => (method => 'POST') => begin
|
|
%= csrf_field
|
|
<div class="row">
|
|
<div class="input-field col s12">
|
|
<label>
|
|
%= check_box include_manual => 1
|
|
<span>Manuelle Einträge ohne Unterwegshalte mitberücksichtigen</span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col s12 center-align">
|
|
<button class="btn wave-effect waves-light" type="submit" name="action" value="go">
|
|
Anzeigen
|
|
</button>
|
|
</div>
|
|
</div>
|
|
%= end
|