blob: c0eea4cd49c3e499e48e7d118d1ddb07926b9958 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<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, polyline_groups => $polyline_groups
%= 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
% if (@{$skipped_journeys // []}) {
<div class="row">
<div class="col s12">
<p>
Die folgenden Zugfahrten wurden nicht eingezeichnet:
</p>
<p>
<ul>
% for my $pair (@{$skipped_journeys}) {
% my ($journey, $reason) = @{$pair};
<li><a href="/journey/<%= $journey->{id} %>"><%= $journey->{type} %> <%= $journey->{no} %> <%= $journey->{from_name} %> → <%= $journey->{to_name} %></a>: <%= $reason %></li>
% }
</ul>
</p>
</div>
</div>
% }
|