Prevented markup escape in 'Welcome to Django' page

Fixes a regression introduced in 5f24cf9705. Refs #22635.
Thanks A.J. May for spotting the regression.
This commit is contained in:
Claude Paroz 2014-06-12 08:37:21 +02:00
parent 6e8d614acd
commit 43372fc7aa
1 changed files with 2 additions and 2 deletions

View File

@ -1164,13 +1164,13 @@ DEFAULT_URLCONF_TEMPLATE = """
<div id="instructions">
<p>
{{ instructions }}
{{ instructions|safe }}
</p>
</div>
<div id="explanation">
<p>
{{ explanation }}
{{ explanation|safe }}
</p>
</div>
</body></html>