From 68f1c66a321810fbf9028ef92f1fa17392127258 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Thu, 30 Dec 2010 15:43:54 +0100 Subject: [PATCH] Vergessenes Template zum Flash-Mechanismus --- templates/webpages/common/flash.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 templates/webpages/common/flash.html diff --git a/templates/webpages/common/flash.html b/templates/webpages/common/flash.html new file mode 100644 index 000000000..fe908512a --- /dev/null +++ b/templates/webpages/common/flash.html @@ -0,0 +1,21 @@ +[%- USE HTML -%] +[%- IF FLASH %] + [%- BLOCK output %] +
+ [%- title %]: + [% FOREACH message = messages %] + [%- HTML.escape(message) %] + [%- UNLESS loop.last %]
[% END %] + [%- END %] +
+ [%- 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 %] -- 2.20.1