File: help_text_and_errors.html

package info (click to toggle)
python-crispy-bootstrap3 2024.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 500 kB
  • sloc: python: 1,815; makefile: 3
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 'bootstrap3/layout/help_text.html' %}
{% endif %}

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

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