summaryrefslogtreecommitdiff
path: root/templates/_cancelled.html.ep
blob: be3e31809ceabce1e7ef4ba4fc516e6319153df7 (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
<div class="card info-color">
	<div class="card-content">
		<span class="card-title">Zugausfall dokumentieren</span>
		<p>Prinzipiell wärest du nun eingecheckt in
			<%= $journey->{train_type} %> <%= $journey->{train_no} %>
			ab <%= $journey->{dep_name} %>, doch dieser Zug fällt aus.
			</p>
		<p>Falls du den Zugausfall z.B. für ein Fahrgastrechteformular
			dokumentieren möchtest, wähle bitte jetzt deine geplante
			Zielstation aus. Achtung: Momentan wird dabei keine
			Soll-Ankunftszeit gespeichert, das zu beheben steht auf
			der Todoliste.</p>
		<table>
			<tbody>
				% my $is_after = 0;
				% for my $station (@{$journey->{route_after}}) {
					<tr><td><a class="action-cancelled-to" data-station="<%= $station->[0] %>"><%= $station->[0] %></a></td></tr>
				% }
			</tbody>
		</table>
	</div>
	<div class="card-action">
		<a class="action-undo" data-id="in_transit">
			<i class="material-icons">undo</i> Checkinversuch Rückgängig?
		</a>
	</div>
</div>