Files
san-reymoros/ext/phpbbstudio/ass/adm/style/ass_errors.html
2020-04-04 18:27:27 +02:00

15 lines
310 B
HTML

{% 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 %}