diff --git a/templates/_cancelled_departure.html.ep b/templates/_cancelled_departure.html.ep index 1d5c76a2cbc068afb42ac6128d8d3908e926f38a..2f7f60b57c4b13c5f322e1ef86fbda3f7d8e10db 100644 --- a/templates/_cancelled_departure.html.ep +++ b/templates/_cancelled_departure.html.ep @@ -2,12 +2,12 @@
Zugausfall

Die Abfahrt von <%= $journey->{train_type} %> <%= $journey->{train_no} %> - in <%= $journey->{dep_name} %> + in <%= $journey->{dep_name} %> entfällt. Der Zugausfall auf der Fahrt nach <%= $journey->{arr_name} %> wurde bereits dokumentiert.

% if (my @connections = @{stash('connections') // []}) {

Alternative Reisemöglichkeiten:

- %= include '_connections', connections => \@connections, checkin_from => $journey->{dep_ds100}; + %= include '_connections', connections => \@connections, checkin_from => $journey->{dep_eva}; % }
diff --git a/templates/_checked_in.html.ep b/templates/_checked_in.html.ep index 7960a80d25b6f43d8056cb06b26613a4ef079956..1377db48f1e475a035f118eb49ddcaa48e5e239e 100644 --- a/templates/_checked_in.html.ep +++ b/templates/_checked_in.html.ep @@ -201,7 +201,7 @@ % if ($journey->{arrival_countdown} < 0) {

Fahrt auswählen zum Einchecken mit Zielwahl.

% } - %= include '_connections', connections => \@connections, checkin_from => $journey->{arrival_countdown} < 0 ? $journey->{arr_ds100} : undef; + %= include '_connections', connections => \@connections, checkin_from => $journey->{arrival_countdown} < 0 ? $journey->{arr_eva} : undef; % } % if (my @transit_fyi = @{stash('transit_fyi') // []}) { Nahverkehr diff --git a/templates/_checked_out.html.ep b/templates/_checked_out.html.ep index 1d8b0e5774bf743e4e8f9d21d0661769a234fa6f..064c54775ddd3ba08131feb9506863aaa5a6d1fb 100644 --- a/templates/_checked_out.html.ep +++ b/templates/_checked_out.html.ep @@ -2,11 +2,11 @@
Ausgecheckt

Aus <%= $journey->{train_type} %> <%= $journey->{train_no} %> - bis <%= $journey->{arr_name} %>

+ bis <%= $journey->{arr_name} %>

% if (my @connections = @{stash('connections') // []}) { Verbindungen

Zug auswählen zum Einchecken mit Zielwahl.

- %= include '_connections', connections => \@connections, checkin_from => $journey->{arr_ds100}; + %= include '_connections', connections => \@connections, checkin_from => $journey->{arr_eva}; % }