mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-27 11:51:24 +01:00
8 lines
386 B
HTML
8 lines
386 B
HTML
{% if field.help_text %}
|
|
{% if help_text_inline %}
|
|
<span id="{{ field.auto_id }}_helptext" class="tw:text-sm tw:text-base-content/60">{{ field.help_text|safe}}</span>
|
|
{% else %}
|
|
<div {% if field.auto_id %}id="{{ field.auto_id }}_helptext" {% endif %}class="tw:text-sm tw:text-base-content/60 tw:mt-1">{{ field.help_text|safe }}</div>
|
|
{% endif %}
|
|
{% endif %}
|