diff options
-rw-r--r-- | templates/_public_status_card.html.ep | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/_public_status_card.html.ep b/templates/_public_status_card.html.ep index f0812ab..c646158 100644 --- a/templates/_public_status_card.html.ep +++ b/templates/_public_status_card.html.ep @@ -163,6 +163,17 @@ </ul> </p> % } + % if (@{$journey->{extra_data}{him_msg} // []}) { + <p style="margin-bottom: 2ex;"> + <ul> + % for my $message (@{$journey->{extra_data}{him_msg} // []}) { + % if (not stash('from_timeline') or $message->{prio} and $message->{prio} eq 'HOCH') { + <li> <i class="material-icons tiny"><%= ($message->{prio} and $message->{prio} eq 'HOCH') ? 'warning' : 'info' %></i> <%= $message->{header} %> <%= $message->{lead} %></li> + % } + % } + </ul> + </p> + % } </div> % if (not stash('from_timeline')) { <div class="card-action"> |