Files
linkding/bookmarks/templates/shared/error_list.html
2026-01-05 05:33:59 +01:00

11 lines
393 B
HTML

{% load i18n %}
{# Force rendering validation errors in English language to align with the rest of the app #}
{% language 'en-us' %}
{% if errors %}
<ul class="{{ error_class }} form-input-hint is-error"
{% if errors.field_id %}id="{{ errors.field_id }}_error"{% endif %}>
{% for error in errors %}<li>{{ error }}</li>{% endfor %}
</ul>
{% endif %}
{% endlanguage %}