File: help_text_and_errors.html

package info (click to toggle)
python-crispy-bootstrap4 2025.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 656 kB
  • sloc: python: 1,956; sh: 6; makefile: 4
file content (13 lines) | stat: -rw-r--r-- 382 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% if help_text_inline and not error_text_inline %}
    {% include 'bootstrap4/layout/help_text.html' %}
{% endif %}

{% if error_text_inline %}
    {% include 'bootstrap4/layout/field_errors.html' %}
{% else %}
    {% include 'bootstrap4/layout/field_errors_block.html' %}
{% endif %}

{% if not help_text_inline %}
    {% include 'bootstrap4/layout/help_text.html' %}
{% endif %}