kivitendo/templates/webpages/common/flash.html @ e79b666b
e8f9198a | Sven Schöling | [%- USE HTML -%][%- USE LxERP %][%- USE T8 %]
|
||
de66b95f | Moritz Bunkus | [%- 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">
|
||||
68f1c66a | Moritz Bunkus | [% FOREACH message = messages %]
|
||
[%- HTML.escape(message) %]
|
||||
[%- UNLESS loop.last %]<br>[% END %]
|
||||
[%- END %]
|
||||
de66b95f | Moritz Bunkus | </span>
|
||
</div>
|
||||
68f1c66a | Moritz Bunkus | [%- END %]
|
||
de66b95f | Moritz Bunkus | [%- 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 %]
|
||||
6a12a968 | Niclas Zimmermann | [%- PROCESS output title=LxERP.t8('Ok') type='ok' messages = FLASH.ok %]
|