Commit 43372fc7 authored by Claude Paroz's avatar Claude Paroz
Browse files

Prevented markup escape in 'Welcome to Django' page

Fixes a regression introduced in 5f24cf97. Refs #22635.
Thanks A.J. May for spotting the regression.
parent 6e8d614a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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>