Ajout d'une extension
This commit is contained in:
14
ext/phpbbstudio/ass/adm/style/ass_errors.html
Normal file
14
ext/phpbbstudio/ass/adm/style/ass_errors.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user