mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-31 14:33:39 +02:00
8 lines
349 B
HTML
8 lines
349 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 %}
|
|
<p {% if field.auto_id %}id="{{ field.auto_id }}_helptext" {% endif %}class="label">{{ field.help_text|safe }}</p>
|
|
{% endif %}
|
|
{% endif %}
|