summaryrefslogblamecommitdiffstats
path: root/templates/w3/layout/help_text.html
blob: 3b5695c9fa3d913ae18fd82b27458cb700d1ef62 (plain) (tree)
1
2
3
4
5
6
7






                                                                                                            
{% 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 %}