diff --git a/django/contrib/admin/templates/admin/field_line.html b/django/contrib/admin/templates/admin/field_line.html index 680830b506..f4b53fff67 100644 --- a/django/contrib/admin/templates/admin/field_line.html +++ b/django/contrib/admin/templates/admin/field_line.html @@ -5,6 +5,6 @@ {% if bound_field.has_label_first %}{% field_label bound_field %}{% endif %} {% field_widget bound_field %} {% if not bound_field.has_label_first %}{% field_label bound_field %}{% endif %} - {% if bound_field.field.help_text %}
{{ bound_field.field.help_text }}
{% endif %} + {% if bound_field.field.help_text %}{{ bound_field.field.help_text|safe }}
{% endif %} {% endfor %}