diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2023-10-05 06:59:06 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2023-10-05 06:59:06 +0200 |
commit | 1401fb64bf2a77129afed307d99c384fa6e26a33 (patch) | |
tree | a51a4344a86814ed09cff23092736151004dc53d /templates/_public_status_card.html.ep | |
parent | 745b3708d3f5a43e09a70616c164de45adf49daa (diff) |
also render entry-only stops in backend
Diffstat (limited to 'templates/_public_status_card.html.ep')
-rw-r--r-- | templates/_public_status_card.html.ep | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/_public_status_card.html.ep b/templates/_public_status_card.html.ep index 055e15a..b463d15 100644 --- a/templates/_public_status_card.html.ep +++ b/templates/_public_status_card.html.ep @@ -98,10 +98,12 @@ % } % last; % } - % if (($station->[2]{dep_countdown} // 0) > 0 and $station->[2]{arr} and $station->[2]{dep}) { + % if (($station->[2]{dep_countdown} // 0) > 0 and $station->[2]{dep}) { <%= $station->[0] %><br/> - <%= $station->[2]{arr}->strftime('%H:%M') %> → - <%= $station->[2]{dep}->strftime('%H:%M') %> + % if ($station->[2]{arr}) { + <%= $station->[2]{arr}->strftime('%H:%M') %> → + % } + %= $station->[2]{dep}->strftime('%H:%M') % if ($station->[2]{dep_delay}) { %= sprintf('(%+d)', $station->[2]{dep_delay} / 60); % } |