search: don't escape anything when indexing pages (#21024)

This commit is contained in:
Frédéric Péters 2018-01-06 17:06:17 +01:00
parent 7e30175d7d
commit ba95fb474f
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
{% autoescape off %}
{{object.title}}
{% for cell in object.get_cells %}
{{ cell.render_for_search|safe }}
{{ cell.render_for_search }}
{% endfor %}
{% endautoescape %}