summaryrefslogtreecommitdiff
path: root/templates/_checked_out.html.ep
blob: 5a944dc0cead90b21336e3987c62b376763f2aae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div class="card">
	<div class="card-content">
		<span class="card-title">Ausgecheckt</span>
		<p>Aus
			%= include '_format_train', journey => $journey
			bis <a href="/s/<%= $journey->{arr_eva} %>?hafas=<%= $journey->{train_id} =~ m{[|]} ? 1 : 0 %>"><%= $journey->{arr_name} %></a></p>
		% if (@{stash('connections_iris') // [] } or @{stash('connections_hafas') // []}) {
			<span class="card-title" style="margin-top: 2ex;">Verbindungen</span>
			<p>Fahrt auswählen zum Einchecken mit Zielwahl.</p>
			% if (@{stash('connections_iris') // [] }) {
				%= include '_connections', connections => stash('connections_iris'), checkin_from => $journey->{arr_eva};
			% }
			% if (@{stash('connections_hafas') // [] }) {
				%= include '_connections_hafas', connections => stash('connections_hafas'), checkin_from => $journey->{arr_eva};
			% }
		% }
	</div>
	<div class="card-action">
		<a class="action-undo" data-id="<%= $journey->{journey_id} %>">
			<i class="material-icons">undo</i> Rückgängig?
		</a>
	</div>
</div>