mirror of
https://github.com/derf/travelynx
synced 2024-11-10 06:54:17 +00:00
parent
0011e4a18d
commit
32a68b46f1
1 changed files with 13 additions and 0 deletions
13
templates/_cancelled_departure.html.ep
Normal file
13
templates/_cancelled_departure.html.ep
Normal file
|
@ -0,0 +1,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_ds100} %>"><%= $journey->{dep_name} %></a>
|
||||
entfällt. Der Zugausfall auf der Fahrt nach <%= $journey->{arr_name} %> wurde bereits dokumentiert.
|
||||
</p>
|
||||
% if (my @connections = get_connecting_trains(eva => $journey->{dep_eva}, destination_name => $journey->{arr_name})) {
|
||||
<p>Alternative Reisemöglichkeiten:</p>
|
||||
%= include '_connections', connections => \@connections, checkin_from => $journey->{dep_ds100};
|
||||
% }
|
||||
</div>
|
||||
</div>
|
Loading…
Reference in a new issue