mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-29 13:41:59 +02:00
8 lines
348 B
HTML
8 lines
348 B
HTML
{% if field.help_text %}
|
|
{% if help_text_inline %}
|
|
<span id="{{ field.auto_id }}_helptext" class="label text-wrap block">{{ field.help_text|safe}}</span>
|
|
{% else %}
|
|
<p {% if field.auto_id %}id="{{ field.auto_id }}_helptext" {% endif %}class="label text-wrap block">{{ field.help_text|safe }}</p>
|
|
{% endif %}
|
|
{% endif %}
|