mirror of
https://github.com/django/django.git
synced 2025-12-15 21:45:20 +00:00
Fixed #25481 -- Added field.help_text to "Looping over a form's fields" docs.
This commit is contained in:
parent
3f342d74e9
commit
ac09d22f79
2 changed files with 4 additions and 0 deletions
|
|
@ -631,6 +631,9 @@ loop:
|
|||
<div class="fieldWrapper">
|
||||
{{ field.errors }}
|
||||
{{ field.label_tag }} {{ field }}
|
||||
{% if field.help_text %}
|
||||
<p class="help">{{ field.help_text|safe }}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue