mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-23 09:51:21 +01:00
8 lines
336 B
HTML
8 lines
336 B
HTML
{% if field.help_text %}
|
|
{% if help_text_inline %}
|
|
<span id="{{ field.auto_id }}_helptext" class="label text-wrap">{{ field.help_text|safe}}</span>
|
|
{% else %}
|
|
<p {% if field.auto_id %}id="{{ field.auto_id }}_helptext" {% endif %}class="label text-wrap">{{ field.help_text|safe }}</p>
|
|
{% endif %}
|
|
{% endif %}
|