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