mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-04-29 05:24:43 +00:00
9 lines
181 B
HTML
9 lines
181 B
HTML
{% if errors_list %}
|
|
<div id="{{ id }}">
|
|
{% for error in errors_list %}
|
|
<p class="help is-danger">
|
|
{{ error | escape }}
|
|
</p>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|