| 1 |
{if !$ignored && !$errors && $success} |
| 2 |
<div class="notice notice-success is-dismissible"> |
| 3 |
<p>{$success|noescape}</p> |
| 4 |
</div> |
| 5 |
{else} |
| 6 |
{if $ignored} |
| 7 |
<div class="notice notice-info is-dismissible"> |
| 8 |
<p>{$ignored|noescape}</p> |
| 9 |
</div> |
| 10 |
{/if} |
| 11 |
|
| 12 |
{if $errors} |
| 13 |
<div class="notice notice-error is-dismissible"> |
| 14 |
<p>{$errors|noescape}</p> |
| 15 |
</div> |
| 16 |
{/if} |
| 17 |
{/if} |
| 18 |
|