eesyphp/templates/errors.tpl

13 lines
280 B
Smarty
Raw Normal View History

2020-04-18 00:51:33 +02:00
{block name="errors"}
{if isset($errors) && !empty($errors)}
<div class="alert alert-warning" role="alert">
{foreach $errors as $e}
<p>{$e}</p>
{/foreach}
</div>
{/if}
{/block}
2023-02-15 23:55:36 +01:00
{*
# vim: autoindent expandtab tabstop=2 shiftwidth=2 softtabstop=2
*}