mirror of
https://github.com/derf/travelynx
synced 2024-11-10 06:54:17 +00:00
47f76da4f8
Squashed commit of the following: commit92518024ba
Author: Birte Kristina Friesel <birte.friesel@uos.de> Date: Fri Jul 26 18:39:46 2024 +0200 add_or_update station: remove superfluos 'new backend id := old backend id' commitdf21c20c6e
Author: Birte Kristina Friesel <birte.friesel@uos.de> Date: Fri Jul 26 18:35:51 2024 +0200 revert connection targets min_count to 3 commitbe335cef07
Author: Birte Kristina Friesel <birte.friesel@uos.de> Date: Fri Jul 26 18:20:05 2024 +0200 mention backend selection in API documentation commit9f41828fb4
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Thu Jul 25 20:19:23 2024 +0200 use_history: not all backends provide route data in departure monitor commit09714b4d89
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Thu Jul 25 20:11:44 2024 +0200 disambiguation: pass correct hafas parameter commit8cdf1120fc
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Thu Jul 25 20:11:28 2024 +0200 _checked_in: hide Zuglauf link for non-db checkins commit7455653f54
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Thu Jul 25 20:01:47 2024 +0200 debug output commitb9cda07f85
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Thu Jul 25 19:09:07 2024 +0200 fix remaining get_connection_targets / get_connecting_trains_p invocations commit2759d7258c
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Wed Jul 24 20:50:12 2024 +0200 support non-DB HAFAS backends (WiP)
23 lines
1 KiB
Text
23 lines
1 KiB
Text
<div class="card">
|
|
<div class="card-content">
|
|
<span class="card-title">Ausgecheckt</span>
|
|
<p>Aus
|
|
%= include '_format_train', journey => $journey
|
|
bis <a href="/s/<%= $journey->{arr_eva} %>?hafas=<%= $journey->{is_hafas} ? $journey->{backend_name} : q{} %>"><%= $journey->{arr_name} %></a></p>
|
|
% if (@{stash('connections_iris') // [] } or @{stash('connections_hafas') // []}) {
|
|
<span class="card-title" style="margin-top: 2ex;">Verbindungen</span>
|
|
<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};
|
|
% }
|
|
% }
|
|
</div>
|
|
<div class="card-action">
|
|
<a class="action-undo" data-id="<%= $journey->{journey_id} %>">
|
|
<i class="material-icons">undo</i> Rückgängig?
|
|
</a>
|
|
</div>
|
|
</div>
|