Files
WYGIWYH/app/templates/crispy-daisyui/layout/help_text_and_errors.html
2025-10-28 14:13:30 -03:00

14 lines
382 B
HTML

{% if help_text_inline and not error_text_inline %}
{% include 'bootstrap5/layout/help_text.html' %}
{% endif %}
{% if error_text_inline %}
{% include 'bootstrap5/layout/field_errors.html' %}
{% else %}
{% include 'bootstrap5/layout/field_errors_block.html' %}
{% endif %}
{% if not help_text_inline %}
{% include 'bootstrap5/layout/help_text.html' %}
{% endif %}