indicate hidden departures in station board

This commit is contained in:
Daniel Friesel 2022-11-21 20:02:18 +01:00
parent 77292c938c
commit 731eb7eb99
No known key found for this signature in database
GPG key ID: 100D5BFB5166E005
2 changed files with 8 additions and 2 deletions

View file

@ -97,7 +97,13 @@
<%= $result->destination %>
</a>
</td>
<td class="<%= $td_class %>"><%= $result->departure->strftime('%H:%M') %>
<td class="<%= $td_class %>">
% if ($result->departure_hidden) {
(<%= $result->departure->strftime('%H:%M') %>)
% }
% else {
%= $result->departure->strftime('%H:%M')
% }
% if ($result->departure_delay) {
(<%= sprintf('%+d', $result->departure_delay) %>)
% }

View file

@ -11,7 +11,7 @@
</tr>
<tr>
<td>(HH:MM)</td>
<td>Route: Ein Ausstieg ist an dieser Station möglicherweise nicht vorgesehen.</td>
<td>Ein Einstieg (Abfahrtstafel) bzw. Ausstieg (Route) ist an dieser Station möglicherweise nicht vorgesehen.</td>
</tr>
</tbody>
</table>