File: help_text.html

package info (click to toggle)
python-crispy-bootstrap5 2025.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 724 kB
  • sloc: python: 2,035; sh: 6; makefile: 3
file content (7 lines) | stat: -rw-r--r-- 328 bytes parent folder | download
1
2
3
4
5
6
7
{% if field.help_text %}
    {% if help_text_inline %}
        <span id="{{ field.auto_id }}_helptext" class="form-text">{{ field.help_text|safe}}</span>
    {% else %}
        <div {% if field.auto_id %}id="{{ field.auto_id }}_helptext" {% endif %}class="form-text">{{ field.help_text|safe }}</div>
    {% endif %}
{% endif %}