<%= $station %> % for my $related_station (sort { $a->{name} cmp $b->{name} } @{$related_stations}) {
<%= $related_station->{name} %> % }
% my $have_connections = 0; % if ($user_status->{checked_in}) {
Aktuell eingecheckt

In <%= $user_status->{train_type} %> <%= $user_status->{train_no} %> ab <%= $user_status->{dep_name} %>

% } % elsif ($user_status->{cancellation} and $station eq $user_status->{cancellation}{dep_name}) {
%= include '_cancelled_departure', journey => $user_status->{cancellation};
% } % elsif ($user_status->{timestamp_delta} < 180) {
%= include '_checked_out', journey => $user_status;
% } % elsif (not param('train') and my @connections = @{stash('connections') // []}) { % $have_connections = 1;

Häufig genutzte Verbindungen – Zug auswählen zum Einchecken mit Zielwahl

%= include '_connections', connections => \@connections, checkin_from => $eva;
% }

% if ($have_connections) { Alle Abfahrten – % } % if ($user_status->{checked_in} and not $can_check_out) { Diese Station liegt nicht auf der Route deines aktuellen Checkins. Falls du aktuell nicht mit <%= $user_status->{train_type} %> <%= $user_status->{train_no} %> unterwegs bist, kannst du den Checkin rückgängig machen. Falls es sich bei <%= $station %> um einen nicht in den Echtzeitdaten abgebildeten Zusatzhalt handelt, kannst du hier auchecken. Da travelynx nicht weiß, welcher der beiden Fälle zutrifft, sind bis dahin keine neuen Checkins möglich. % } % elsif (@{$results}) { Zug auswählen zum Einchecken. % } % else { Keine Abfahrten gefunden. Ein Checkin ist frühestens 30 Minuten vor und maximal 120 Minuten nach Abfahrt möglich. % }

% if (not ($user_status->{checked_in} and not $can_check_out)) { % if ($hafas) { %= include '_departures_hafas', results => $results; % } % else { %= include '_departures_iris', results => $results; % } % }
%= include '_footer', version => stash('version')