mirror of
https://github.com/derf/travelynx
synced 2024-12-11 21:42:38 +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)
49 lines
1.4 KiB
Text
49 lines
1.4 KiB
Text
<ul class="collection departures connections">
|
|
% for my $res (@{$connections}) {
|
|
% my ($train, $via, $via_arr, $hafas_service) = @{$res};
|
|
% $via_arr = $via_arr ? $via_arr->strftime('%H:%M') : q{};
|
|
% my $row_class = '';
|
|
% my $link_class = 'action-checkin';
|
|
% if ($train->is_cancelled) {
|
|
% $row_class = 'cancelled';
|
|
% $link_class = 'action-cancelled-from';
|
|
% }
|
|
% if ($checkin_from) {
|
|
<li class="collection-item <%= $row_class %> <%= $link_class %>"
|
|
data-hafas="<%= $hafas_service %>"
|
|
data-station="<%= $train->station_eva %>"
|
|
data-train="<%= $train->id %>"
|
|
data-ts="<%= ($train->sched_datetime // $train->datetime)->epoch %>"
|
|
data-dest="<%= $via->{name} %>">
|
|
% }
|
|
% else {
|
|
<li class="collection-item <%= $row_class %>">
|
|
% }
|
|
<a class="dep-time" href="#">
|
|
% if ($train->is_cancelled) {
|
|
%= $train->sched_datetime->strftime('%H:%M')
|
|
% }
|
|
% else {
|
|
%= $train->datetime->strftime('%H:%M')
|
|
% }
|
|
% if ($via_arr) {
|
|
→ <%= $via_arr %>
|
|
% }
|
|
% if ($train->delay) {
|
|
%= sprintf('(%+d)', $train->delay)
|
|
% }
|
|
</a>
|
|
<span class="connect-platform-wrapper">
|
|
% if ($train->platform) {
|
|
<span>Gleis <%= $train->platform %></span>
|
|
% }
|
|
<span class="dep-line <%= $train->type // q{} %>">
|
|
%= $train->line
|
|
</span>
|
|
</span>
|
|
<span class="dep-dest">
|
|
%= $via->{name}
|
|
</span>
|
|
</li>
|
|
% }
|
|
</ul>
|