diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2024-05-19 18:11:51 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2024-05-19 18:11:51 +0200 |
commit | 976acbed43591c6681e0c2344680232558a2e595 (patch) | |
tree | 2dbd234443cfa7a546af2d91e9618738a2d8f8b6 /templates | |
parent | e293bb9b1473a4ae4815c344e719b640dc5aa9ba (diff) |
HAFAS, EFA backend: show expected occupancy in departure list
Diffstat (limited to 'templates')
-rw-r--r-- | templates/app.html.ep | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/app.html.ep b/templates/app.html.ep index 50f8a5a..214bee1 100644 --- a/templates/app.html.ep +++ b/templates/app.html.ep @@ -151,6 +151,18 @@ % else { <span class="platform"> % } +% if ($departure->{load}{FIRST} or $departure->{load}{SECOND}) { +% my ($text, $icon1, $icon2) = utilization_icon([$departure->{load}{FIRST}, $departure->{load}{SECOND}]); + <span class="load"> + <i class="material-icons" style="vertical-align: bottom;" aria-hidden="true"><%= $icon2 %></i> + </span> +% } +% elsif (my $o = $departure->{occupancy}) { + <span class="load"> +% my ($text, $icon) = occupancy_icon($o); + <i class="material-icons" style="vertical-align: bottom;" aria-hidden="true"><%= $icon %></i> + </span> +% } <span class="visually-hidden">Gleis</span> %= $departure->{platform} </span> |