﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
25469	Add an auto escape setting to the Django template engine	Aidan Lister	Jef Geskens	"Passing Context(mydata, autoescape=True) is no longer effective when using the non-deprecated format:

{{{
    from django.template import engines
    engines['django'].from_string('hello {{person}}').render({'person': 'bob & co'})
    >>> 'hello bob &amp; co'
}}}

vs

{{{
    from django.template import Template,Context
    Template('hello {{person}}').render(Context({'person': 'bob & co'}, autoescape=False))
    >>> 'hello bob & co'
}}}

This is a very useful feature when not generated HTML templates!
"	New feature	closed	Template system	1.8	Normal	fixed	templates	aaronelliotross@…	Ready for checkin	1	1	0	1	0	0
