summaryrefslogtreecommitdiff
path: root/templates/_cancelled_departure.html.ep
blob: 79492a5f84b04c1b7612f85dd9bb46957702b505 (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">Zugausfall</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 Zugausfall auf 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>