moviewyrm/bookwyrm/templates/snippets/form_errors.html

10 lines
181 B
HTML
Raw Normal View History

2021-11-29 21:33:03 +00:00
{% if errors_list %}
<div id="{{ id }}">
{% for error in errors_list %}
<p class="help is-danger">
{{ error | escape }}
</p>
{% endfor %}
</div>
{% endif %}