kivitendo/templates/webpages/common/flash.html @ 357d134d
e8f9198a | Sven Schöling | [%- USE HTML -%][%- USE LxERP %][%- USE T8 %]
|
||
68f1c66a | Moritz Bunkus | [%- IF FLASH %]
|
||
[%- BLOCK output %]
|
||||
<div class="flash_message_[% type %]">
|
||||
7210e098 | Sven Schöling | <a href='#' style='float:right' onclick='$($(this).closest("div")).remove()'><img src='image/close.png' border='0' alt='[% 'Close Flash' | $T8 %]'></a>
|
||
68f1c66a | Moritz Bunkus | [%- title %]:
|
||
[% FOREACH message = messages %]
|
||||
[%- HTML.escape(message) %]
|
||||
[%- UNLESS loop.last %]<br>[% END %]
|
||||
[%- END %]
|
||||
</div>
|
||||
[%- END %]
|
||||
[%- IF FLASH.error && FLASH.error.size %]
|
||||
[%- PROCESS output title=LxERP.t8('Error') type='error' messages = FLASH.error %]
|
||||
[%- END %]
|
||||
[%- IF FLASH.warning && FLASH.warning.size %]
|
||||
[%- PROCESS output title=LxERP.t8('Warning') type='warning' messages = FLASH.warning %]
|
||||
[%- END %]
|
||||
[%- IF FLASH.info && FLASH.info.size %]
|
||||
[%- PROCESS output title=LxERP.t8('Information') type='info' messages = FLASH.info %]
|
||||
[%- END %]
|
||||
[%- END %]
|