9 lines
282 B
Plaintext
9 lines
282 B
Plaintext
|
% 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
|