Vergessenes Template zum Flash-Mechanismus
authorMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 30 Dec 2010 14:43:54 +0000 (15:43 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 30 Dec 2010 14:43:54 +0000 (15:43 +0100)
templates/webpages/common/flash.html [new file with mode: 0644]

diff --git a/templates/webpages/common/flash.html b/templates/webpages/common/flash.html
new file mode 100644 (file)
index 0000000..fe90851
--- /dev/null
@@ -0,0 +1,21 @@
+[%- USE HTML -%]
+[%- IF FLASH %]
+ [%- BLOCK output %]
+  <div class="flash_message_[% type %]">
+   [%- 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 %]