0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-20 03:36:20 +02:00
postfixadmin/templates/flash_error.tpl

21 lines
506 B
Smarty
Raw Normal View History

<!-- {$smarty.template} -->
<br clear="all"/><br />
{strip}
{if isset($smarty.session.flash)}
{if isset($smarty.session.flash.info)}
<ul class="flash-info">
{foreach from=$smarty.session.flash.info item=msg}
<li>{$msg|escape:html}</li>
{/foreach}
</ul>
{/if}
{if isset($smarty.session.flash.error)}
<ul class="flash-error">
{foreach from=$smarty.session.flash.error item=msg}
<li>{$msg|escape:html}</li>
{/foreach}
</ul>
{/if}
{/if}
{/strip}