You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
postfixadmin/templates/flash_error.tpl

21 lines
506 B
Smarty

<!-- {$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}