puchar/crispy_forms/templates/bootstrap3/layout/help_text.html
2022-12-05 04:13:11 +01:00

8 lines
290 B
HTML

{% if field.help_text %}
{% if help_text_inline %}
<span id="hint_{{ field.auto_id }}" class="help-block">{{ field.help_text|safe }}</span>
{% else %}
<div id="hint_{{ field.auto_id }}" class="help-block">{{ field.help_text|safe }}</div>
{% endif %}
{% endif %}