This repository has been archived on 2024-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
old-scribeengine/scribeengine/templates/flash.mako

9 lines
282 B
Plaintext
Raw Normal View History

% if h.flash.has_message():
<div id="message" class="${h.flash.get_message_type()}">
% if h.flash.has_header():
<p><strong>${h.flash.get_message_head()}</strong></p>
% endif
<p>${h.flash.get_message_text()}</p>
</div>
% endif