1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

[1.8.x] Fixed #25481 -- Added field.help_text to "Looping over a form's fields" docs.

Backport of ac09d22f79 from master
This commit is contained in:
John Moses
2015-10-02 09:56:25 -05:00
committed by Tim Graham
parent 2a8988c3b0
commit a9b6218960
2 changed files with 4 additions and 0 deletions

View File

@@ -635,6 +635,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 %}