puchar/crispy_forms/templates/bootstrap4/layout/help_text.html

8 lines
304 B
HTML
Raw Normal View History

2022-12-05 04:12:09 +01:00
{% if field.help_text %}
{% if help_text_inline %}
<span id="hint_{{ field.auto_id }}" class="text-muted">{{ field.help_text|safe }}</span>
{% else %}
<small id="hint_{{ field.auto_id }}" class="form-text text-muted">{{ field.help_text|safe }}</small>
{% endif %}
{% endif %}