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

20 lines
460 B
Smarty

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