diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2023-09-09 10:06:31 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2023-09-09 10:06:31 +0200 |
commit | 8daf885acefcce8cfe27c9a848f77b814d83df7b (patch) | |
tree | fae9d29ca6a96e29eb581174bd7192119c477c4a /templates | |
parent | 10dc685d3b2983477891d8318056a148a0c2a4db (diff) |
indicate whether current journey has realtime data
Diffstat (limited to 'templates')
-rw-r--r-- | templates/_checked_in.html.ep | 7 | ||||
-rw-r--r-- | templates/_public_status_card.html.ep | 5 |
2 files changed, 9 insertions, 3 deletions
diff --git a/templates/_checked_in.html.ep b/templates/_checked_in.html.ep index e5e0baf..f3ecda4 100644 --- a/templates/_checked_in.html.ep +++ b/templates/_checked_in.html.ep @@ -2,7 +2,7 @@ <div class="autorefresh"> <div class="card"> <div class="card-content"> - <i class="material-icons small right sync-failed-marker grey-text" style="display: none;">sync_problem</i> + <i class="material-icons right sync-failed-marker grey-text" style="display: none;">sync_problem</i> % if (not $journey->{arr_name}) { <span class="card-title center-align">Ziel wählen</span> % } @@ -180,9 +180,12 @@ Bitte wähle ein neues Reiseziel. </p> % } - % if (@{$journey->{messages} // []} or @{$journey->{extra_data}{qos_msg} // []}) { + % if (@{$journey->{messages} // []} or @{$journey->{extra_data}{qos_msg} // []} or not $journey->{extra_data}{rt}) { <p style="margin-bottom: 2ex;"> <ul> + % if (not $journey->{extra_data}{rt}) { + <li><i class="material-icons tiny">gps_off</i> Keine Echtzeitdaten vorhanden + % } % for my $message (reverse @{$journey->{messages} // []}) { % if ($journey->{sched_departure}->epoch - $message->[0]->epoch < 1800) { <li> <i class="material-icons tiny">warning</i> <%= $message->[0]->strftime('%H:%M') %>: <%= $message->[1] %></li> diff --git a/templates/_public_status_card.html.ep b/templates/_public_status_card.html.ep index f031e15..055e15a 100644 --- a/templates/_public_status_card.html.ep +++ b/templates/_public_status_card.html.ep @@ -2,7 +2,7 @@ % if ($journey->{checked_in}) { <div class="card"> <div class="card-content"> - <i class="material-icons small right sync-failed-marker grey-text" style="display: none;">sync_problem</i> + <i class="material-icons right sync-failed-marker grey-text" style="display: none;">sync_problem</i> <span class="card-title"> % if (stash('from_profile')) { Unterwegs mit <%= include '_format_train', journey => $journey %> @@ -14,6 +14,9 @@ <a href="/p/<%= $name %>"><%= $name %></a> ist unterwegs % } <i class="material-icons right"><%= visibility_icon($journey->{effective_visibility_str}) %></i> + % if (not $journey->{extra_data}{rt}) { + <i class="material-icons right grey-text">gps_off</i> + % } </span> % if ($privacy->{comments_visible} and $journey->{comment}) { <p>„<%= $journey->{comment} %>“</p> |