2019-05-16 14:10:53 +00:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-content">
|
2019-04-23 20:27:13 +00:00
|
|
|
<span class="card-title">Ausgecheckt</span>
|
2024-01-22 18:13:46 +00:00
|
|
|
<p>Aus
|
|
|
|
%= include '_format_train', journey => $journey
|
2023-09-09 08:01:12 +00:00
|
|
|
bis <a href="/s/<%= $journey->{arr_eva} %>?hafas=<%= $journey->{train_id} =~ m{[|]} ? 1 : 0 %>"><%= $journey->{arr_name} %></a></p>
|
2023-09-24 16:19:17 +00:00
|
|
|
% if (@{stash('connections_iris') // [] } or @{stash('connections_hafas') // []}) {
|
2022-07-26 13:36:22 +00:00
|
|
|
<span class="card-title" style="margin-top: 2ex;">Verbindungen</span>
|
2023-09-24 16:19:17 +00:00
|
|
|
<p>Fahrt auswählen zum Einchecken mit Zielwahl.</p>
|
|
|
|
% if (@{stash('connections_iris') // [] }) {
|
|
|
|
%= include '_connections', connections => stash('connections_iris'), checkin_from => $journey->{arr_eva};
|
|
|
|
% }
|
|
|
|
% if (@{stash('connections_hafas') // [] }) {
|
|
|
|
%= include '_connections_hafas', connections => stash('connections_hafas'), checkin_from => $journey->{arr_eva};
|
|
|
|
% }
|
2019-05-19 08:32:57 +00:00
|
|
|
% }
|
2019-04-23 20:27:13 +00:00
|
|
|
</div>
|
|
|
|
<div class="card-action">
|
2019-04-24 07:00:30 +00:00
|
|
|
<a class="action-undo" data-id="<%= $journey->{journey_id} %>">
|
2019-04-23 20:27:13 +00:00
|
|
|
<i class="material-icons">undo</i> Rückgängig?
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|