diff options
author | Daniel Friesel <derf@finalrewind.org> | 2021-07-18 09:11:26 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2021-07-18 09:11:26 +0200 |
commit | 18e06ad1831b8ea45a87426b75243a7f4ef9f534 (patch) | |
tree | 10635417f3fe2a06474d6f573d4707fde606068c /templates/_train_details.html.ep | |
parent | f195abb22603aa1acf332578ef6982fc829e10b6 (diff) |
departure view: use IRIS to decide whether realtime is missing
Diffstat (limited to 'templates/_train_details.html.ep')
-rw-r--r-- | templates/_train_details.html.ep | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/_train_details.html.ep b/templates/_train_details.html.ep index eea449d..ab96c38 100644 --- a/templates/_train_details.html.ep +++ b/templates/_train_details.html.ep @@ -133,10 +133,10 @@ <a class="smallbutton" href="<%= $link->[1] %>"><i class="material-icons" aria-hidden="true">warning</i> <%= $link->[0] %></a> % } % if ($departure->{missing_realtime}) { - <span class="disabledbutton" title="Nur Fahrplandaten verfügbar. Ob die Zugfahrt tatsächlich stattfindet, ist noch nicht bekannt."><i class="material-icons" aria-hidden="true">gps_off</i> Echtzeitdaten fehlen</span> + <span class="disabledbutton" title="Nur Fahrplandaten verfügbar. Ob die Zugfahrt tatsächlich stattfindet, ist nicht bekannt."><i class="material-icons" aria-hidden="true">gps_off</i> Echtzeitdaten fehlen</span> % } -% elsif ($departure->{partially_missing_realtime}) { - <span class="disabledbutton"><i class="material-icons" aria-hidden="true">gps_off</i> Echtzeitdaten unvollständig</span> +% elsif ($departure->{no_realtime_yet}) { + <span class="disabledbutton" title="Nur Fahrplandaten verfügbar. Ob die Zugfahrt tatsächlich stattfindet, ist noch nicht bekannt."><i class="material-icons" aria-hidden="true">gps_off</i> Noch keine Echtzeitdaten verfügbar</span> % } </div> @@ -225,7 +225,7 @@ (heute <%= $departure->{arrival} %>) % } % } -% if ($departure->{missing_realtime}) { +% if ($departure->{missing_realtime} or $departure->{no_realtime_yet}) { <i class="material-icons" aria-label="Echtzeitdaten fehlen">gps_off</i> % } <strong><%= stash('station_name') %></strong> |