|
[%- USE HTML -%][%- USE LxERP %][%- USE T8 %]
|
|
[%- BLOCK output %]
|
|
<div id="flash_[% type %]" class="flash_message_[% type %]"[% IF !messages || !messages.size %] style="display: none"[% END %]>
|
|
<a href='#' style='float:right' onclick='$(this).closest("div").find(".flash_content").empty(); $(this).closest("div").hide()'><img src='image/close.png' border='0' alt='[% 'Close Flash' | $T8 %]'></a>
|
|
<span class="flash_title">[%- title %]:</span>
|
|
<span id="flash_[% type %]_content" class="flash_content">
|
|
[% FOREACH message = messages %]
|
|
[%- HTML.escape(message) %]
|
|
[%- UNLESS loop.last %]<br>[% END %]
|
|
[%- END %]
|
|
</span>
|
|
</div>
|
|
[%- END %]
|
|
[%- PROCESS output title=LxERP.t8('Error') type='error' messages = FLASH.error %]
|
|
[%- PROCESS output title=LxERP.t8('Warning') type='warning' messages = FLASH.warning %]
|
|
[%- PROCESS output title=LxERP.t8('Information') type='info' messages = FLASH.info %]
|