summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2025-04-16 20:27:58 +0200
committerBirte Kristina Friesel <derf@finalrewind.org>2025-04-16 20:27:58 +0200
commite605ed389de964e6fc0f494f732b607a5ff6bdc6 (patch)
treea3c4a249c7dfec0ae6e77b4392174b3f9e36142a /templates
parent39d0fd00cf1a5b5c83d2c9439e5fd481587ba3dd (diff)
Show DBRIS messages (disruptions and infos) in checked_in view2.11.18
Diffstat (limited to 'templates')
-rw-r--r--templates/_checked_in.html.ep2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/_checked_in.html.ep b/templates/_checked_in.html.ep
index b625388..f9a199b 100644
--- a/templates/_checked_in.html.ep
+++ b/templates/_checked_in.html.ep
@@ -335,7 +335,7 @@
<p style="margin-bottom: 2ex;">
<ul>
% for my $message (@{$journey->{extra_data}{him_msg} // []}) {
- <li> <i class="material-icons tiny">info</i> <%= $message->{header} %> <%= $message->{lead} %></li>
+ <li> <i class="material-icons tiny"><%= ($message->{prio} and $message->{prio} eq 'HOCH') ? 'warning' : 'info' %></i> <%= $message->{header} %> <%= $message->{lead} %></li>
% }
</ul>
</p>