Include errors display snippet

This commit is contained in:
Joachim
2021-11-29 22:33:03 +01:00
parent 85c688b147
commit dd0114c644
4 changed files with 21 additions and 18 deletions

View File

@ -0,0 +1,9 @@
{% if errors_list %}
<div id="{{ id }}">
{% for error in errors_list %}
<p class="help is-danger">
{{ error | escape }}
</p>
{% endfor %}
</div>
{% endif %}