summaryrefslogtreecommitdiff
path: root/templates/_cancelled_departure.html.ep
blob: db6cc5cc49ac4b4cbf84b7b3bcb3f74acb814e85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="card">
	<div class="card-content">
		<span class="card-title">Fahrtausfall</span>
		<p>Die Abfahrt von <%= $journey->{train_type} %> <%= $journey->{train_no} %>
			in <a href="/s/<%= $journey->{dep_eva} %>"><%= $journey->{dep_name} %></a>
			entfällt. Der Ausfall der Fahrt nach <%= $journey->{arr_name} %> wurde bereits dokumentiert.
		</p>
		% if (my @connections = @{stash('connections_iris') // []}) {
			<p>Alternative Reisemöglichkeiten:</p>
			%= include '_connections', connections => \@connections, checkin_from => $journey->{dep_eva};
		% }
	</div>
</div>