Ajout d'une extension

This commit is contained in:
Gauvain Boiché
2020-04-04 18:27:27 +02:00
parent c3ed8cc1c1
commit 3a964fe237
387 changed files with 58921 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{% if ERRORS %}
<div class="errorbox">
<h3>{{ lang('ERROR') }}</h3>
<p class="error">
{% if ERRORS is iterable %}
{% for error in ERRORS %}
{{ lang(error) }}{% if not loop.last %}<br />{% endif %}
{% endfor %}
{% else %}
{{ lang(ERRORS) }}
{% endif %}
</p>
</div>
{% endif %}