mirror of
https://github.com/django/django.git
synced 2025-06-05 11:39:13 +00:00
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:
parent
6e8d614acd
commit
43372fc7aa
@ -1164,13 +1164,13 @@ DEFAULT_URLCONF_TEMPLATE = """
|
|||||||
|
|
||||||
<div id="instructions">
|
<div id="instructions">
|
||||||
<p>
|
<p>
|
||||||
{{ instructions }}
|
{{ instructions|safe }}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="explanation">
|
<div id="explanation">
|
||||||
<p>
|
<p>
|
||||||
{{ explanation }}
|
{{ explanation|safe }}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</body></html>
|
</body></html>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user