Fixed #6061 -- Don't escape help_text in the admin interface (so that it

behaves as documented). Thanks, baumer.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@6781 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2007-11-30 19:59:13 +00:00
parent 4262765649
commit f27365e5bd
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@
{% if bound_field.has_label_first %}{% field_label bound_field %}{% endif %} {% if bound_field.has_label_first %}{% field_label bound_field %}{% endif %}
{% field_widget bound_field %} {% field_widget bound_field %}
{% if not bound_field.has_label_first %}{% field_label bound_field %}{% endif %} {% if not bound_field.has_label_first %}{% field_label bound_field %}{% endif %}
{% if bound_field.field.help_text %}<p class="help">{{ bound_field.field.help_text }}</p>{% endif %} {% if bound_field.field.help_text %}<p class="help">{{ bound_field.field.help_text|safe }}</p>{% endif %}
{% endfor %} {% endfor %}
</div> </div>