12 lines
471 B
Smarty
12 lines
471 B
Smarty
{if isset($errors) && $errors}
|
|
<div class="error">
|
|
<p>{if $errors|@count > 1}{l s='There are'}{else}{l s='There is'}{/if} {$errors|@count} {if $errors|@count > 1}{l s='errors'}{else}{l s='error'}{/if} :</p>
|
|
<ol>
|
|
{foreach from=$errors key=k item=error}
|
|
<li>{$error}</li>
|
|
{/foreach}
|
|
</ol>
|
|
<p><a href="{$smarty.server.HTTP_REFERER|escape:'htmlall':'UTF-8'|secureReferrer}" class="button_small" title="{l s='Back'}">« {l s='Back'}</a></p>
|
|
</div>
|
|
{/if}
|