summaryrefslogtreecommitdiffstats
path: root/templates/w3/layout/help_text_and_errors.html
blob: 73132467aaf71bb35bea3abca9534c659a711e29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% if help_text_inline and not error_text_inline %}
    {% include 'w3/layout/help_text.html' %}
{% endif %}

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

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