You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
357 B
13 lines
357 B
% layout 'standard', title => 'Dashboard', sb_active => 'admin';
|
|
|
|
%= include 'admin/_nav', page => 'alerts'
|
|
|
|
%= include '_base/status_window';
|
|
|
|
% for my $alert ( $c->db->system_notes( { is_read => 0 } )->all ) {
|
|
<div class="mt-3 alert alert-success" role="alert">
|
|
<%= $alert->content %>
|
|
<%= $alert->source %>
|
|
</div>
|
|
% }
|
|
|
|
|