lufi/templates/msg.html.ep

10 lines
400 B
Plaintext

% # vim:set sw=4 ts=4 sts=4 ft=html.epl expandtab:
% if (!defined(stash('f')) && defined(stash('msg'))) {
<div class="alert alert-warning"><%= stash('msg') %></div>
% } elsif (defined(stash('msg_success'))) {
<div class="alert alert-success"><%= stash('msg_success') %></div>
% } else {
<h2><%= stash('f')->filename %></h2>
<div class="alert alert-info"><%= stash('msg') %></div>
% }