2018-09-02 19:41:33 +00:00
<div class="row">
2024-07-26 16:55:58 +00:00
<div class="col s8">
<strong style="font-size: 120%;">
2023-10-22 16:32:41 +00:00
<%= $station %>
2024-07-26 16:55:58 +00:00
</strong>
2019-10-19 08:15:18 +00:00
% for my $related_station (sort { $a->{name} cmp $b->{name} } @{$related_stations}) {
2023-10-22 12:39:04 +00:00
+ <%= $related_station->{name} %> <br/>
2019-10-19 08:15:18 +00:00
% }
</div>
2024-07-26 16:55:58 +00:00
<div class="col s4 center-align">
2024-08-21 17:31:47 +00:00
% my $self_link = url_for('sstation', station => $station // param('station'));
2024-07-26 16:55:58 +00:00
% if (param('hafas')) {
2024-08-21 17:31:47 +00:00
<a href="/account/select_backend?redirect_to=<%= $self_link %>" class="btn-small btn-flat"><i class="material-icons left" aria-hidden="true">directions</i><%= param('hafas') %></a>
2024-07-26 16:55:58 +00:00
% }
% else {
% if ($user->{backend_id}) {
2024-08-21 17:31:47 +00:00
<a href="/account/select_backend?redirect_to=<%= $self_link %>" class="btn-small btn-flat"><i class="material-icons left" aria-hidden="true">directions</i><%= $user->{backend_name} %></a>
2024-07-26 16:55:58 +00:00
% }
% else {
2024-08-29 20:04:46 +00:00
<a href="/account/select_backend?redirect_to=<%= $self_link %>" class="btn-small btn-flat"><i class="material-icons left" aria-hidden="true">train</i>IRIS</a>
2024-07-26 16:55:58 +00:00
% }
% }
2023-08-15 06:37:14 +00:00
</div>
2023-10-22 12:40:17 +00:00
</div>
2019-05-20 17:15:21 +00:00
% my $have_connections = 0;
2023-06-08 08:20:13 +00:00
% if ($user_status->{checked_in}) {
2019-05-20 17:15:21 +00:00
<div class="row">
<div class="col s12">
2019-05-16 14:10:53 +00:00
<div class="card">
<div class="card-content">
2018-09-02 19:41:33 +00:00
<span class="card-title">Aktuell eingecheckt</span>
2023-06-08 08:20:13 +00:00
<p>In <%= $user_status->{train_type} %> <%= $user_status->{train_no} %>
2023-07-23 10:50:46 +00:00
% if ( $user_status->{arr_name}) {
von <%= $user_status->{dep_name} %> nach <%= $user_status->{arr_name} %>
% }
% else {
ab <%= $user_status->{dep_name} %>
% }
</p>
2018-09-02 19:41:33 +00:00
</div>
<div class="card-action">
2023-06-08 08:20:13 +00:00
% if ($can_check_out) {
2024-07-26 16:55:58 +00:00
<a class="action-undo" data-hafas="<%= param('hafas') // q{} %>" data-id="in_transit" data-checkints="<%= $user_status->{timestamp}->epoch %>" style="margin-right: 0;">
2023-06-08 08:20:13 +00:00
<i class="material-icons left" aria-hidden="true">undo</i> Rückgängig
</a>
2024-07-26 16:55:58 +00:00
<a class="action-checkout right" data-hafas="<%= param('hafas') // q{} %>" data-station="<%= $eva %>" data-force="1">
2023-06-08 08:20:13 +00:00
Hier auschecken
</a>
% }
% else {
<a class="action-undo" data-id="in_transit" data-checkints="<%= $user_status->{timestamp}->epoch %>" style="margin-right: 0;">
<i class="material-icons left" aria-hidden="true">undo</i> Rückgängig
</a>
2024-07-26 16:55:58 +00:00
<a class="action-checkout right" data-hafas="<%= param('hafas') // q{} %>" data-station="<%= $eva %>" data-force="1">
2023-10-22 16:32:41 +00:00
<i class="material-icons left" aria-hidden="true">gps_off</i>
2023-06-08 08:20:13 +00:00
Hier auschecken
</a>
% }
2018-09-02 19:41:33 +00:00
</div>
</div>
2019-05-20 17:15:21 +00:00
</div>
</div>
% }
2023-06-08 08:20:13 +00:00
% elsif ($user_status->{cancellation} and $station eq $user_status->{cancellation}{dep_name}) {
2020-02-17 20:13:07 +00:00
<div class="row">
<div class="col s12">
2023-06-08 08:20:13 +00:00
%= include '_cancelled_departure', journey => $user_status->{cancellation};
2020-02-17 20:13:07 +00:00
</div>
</div>
% }
2023-06-08 08:20:13 +00:00
% elsif ($user_status->{timestamp_delta} < 180) {
2019-05-20 17:15:21 +00:00
<div class="row">
<div class="col s12">
2023-06-08 08:20:13 +00:00
%= include '_checked_out', journey => $user_status;
2019-05-20 17:15:21 +00:00
</div>
2018-09-02 19:41:33 +00:00
</div>
2019-05-20 17:15:21 +00:00
% }
2023-09-24 16:19:17 +00:00
% elsif (not param('train') and (@{stash('connections_iris') // []} or @{stash('connections_hafas') // []}) ) {
2019-05-20 17:15:21 +00:00
% $have_connections = 1;
<div class="row">
<div class="col s12">
2023-08-14 10:24:26 +00:00
<p>Häufig genutzte Verbindungen – Fahrt auswählen zum Einchecken mit Zielwahl</p>
2023-09-24 16:19:17 +00:00
% if (@{stash('connections_iris') // []}) {
%= include '_connections', connections => stash('connections_iris'), checkin_from => $eva;
% }
% if (@{stash('connections_hafas') // []}) {
%= include '_connections_hafas', connections => stash('connections_hafas'), checkin_from => $eva;
% }
2019-05-20 17:15:21 +00:00
</div>
</div>
% }
2024-03-31 12:44:37 +00:00
<div class="row">
<div class="col s4 center-align">
% if ($hafas) {
2024-06-15 08:36:18 +00:00
<a class="btn-small" href="<%= url_for('sstation', station => param('station'))->query({hafas => $hafas, timestamp => $datetime->clone->subtract(hours => 1)->epoch}) %>"><i class="material-icons left" aria-hidden="true">chevron_left</i><span class="hide-on-small-only">früher</span></a>
2024-03-31 12:44:37 +00:00
% }
</div>
<div class="col s4 center-align">
% if ($now_in_range) {
2024-03-31 15:37:14 +00:00
<a class="btn-small" href="#now"><i class="material-icons left" aria-hidden="true">vertical_align_center</i><span class="hide-on-small-only">Jetzt</span></a>
2024-03-31 12:44:37 +00:00
% }
</div>
<div class="col s4 center-align">
% if ($hafas) {
2024-06-15 08:36:18 +00:00
<a class="btn-small" href="<%= url_for('sstation', station => param('station'))->query({hafas => $hafas, timestamp => $datetime->clone->add(hours => 1)->epoch}) %>"><span class="hide-on-small-only">später</span><i class="material-icons right" aria-hidden="true">chevron_right</i></a>
2024-03-31 12:44:37 +00:00
% }
</div>
</div>
2018-09-02 19:41:33 +00:00
<div class="row">
2019-03-08 17:02:18 +00:00
<div class="col s12">
2019-05-20 17:15:21 +00:00
<p>
% if ($have_connections) {
Alle Abfahrten –
% }
2023-06-08 08:20:13 +00:00
% if ($user_status->{checked_in} and not $can_check_out) {
2023-07-23 10:50:46 +00:00
Diese Station liegt nicht auf der Route deines <a href="/">aktuellen Checkins</a>.
2023-06-08 08:20:13 +00:00
Falls du aktuell nicht mit <b><%= $user_status->{train_type} %> <%= $user_status->{train_no} %></b> unterwegs bist, kannst du den Checkin rückgängig machen.
Falls es sich bei <b><%= $station %></b> 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.
% }
2023-07-23 10:50:46 +00:00
% elsif ($user_status->{checked_in} and not $user_status->{arr_eva}) {
Du bist bereits eingecheckt und hast noch kein Fahrtziel angegeben.
Bitte <a href="/">wähle zunächst ein Ziel</a>.
Neue Checkins sind erst nach Ankunft der aktuellen Fahrt möglich.
% }
% elsif ($user_status->{checked_in} and $user_status->{arrival_countdown} > 0) {
Deine aktuelle Fahrt ist <a href="/">noch unterwegs</a>.
Ein neuer Checkin ist erst nach Ankunft am ausgewählten Ziel möglich.
% }
2023-06-08 08:20:13 +00:00
% elsif (@{$results}) {
2023-08-14 10:24:26 +00:00
Fahrt auswählen zum Einchecken.
2019-05-20 17:15:21 +00:00
% }
% else {
Keine Abfahrten gefunden. Ein Checkin ist frühestens 30 Minuten vor
und maximal 120 Minuten nach Abfahrt möglich.
% }
</p>
2023-07-23 10:50:46 +00:00
% if (not $user_status->{checked_in} or ($can_check_out and $user_status->{arr_eva} and $user_status->{arrival_countdown} <= 0)) {
2023-06-08 08:20:13 +00:00
% if ($hafas) {
2024-07-26 16:55:58 +00:00
%= include '_departures_hafas', results => $results, hafas => $hafas;
2023-06-08 08:20:13 +00:00
% }
% else {
%= include '_departures_iris', results => $results;
% }
2023-03-27 19:03:25 +00:00
% }
2019-03-08 17:02:18 +00:00
</div>
2018-09-02 19:41:33 +00:00
</div>