﻿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
13150	Replace make_safe(media) with media in ModelAdmin context dictionary	lsbardel	Sergey Kolosov	"Currently, the media object is converted to safe string in both {{{add_view}}} and {{{change_view}}} methods when added to the context dictionary 
while in {{{changelist_view}}} is not (the correct approach).
Converting media to string means you cannot split css from js in 
templates. What I'd like to do is

{{{
<head> 
... 
{% for css in media.render_css %} 
{{ css|safe }}{% endfor %} 
</head> 
<body> 
... 
{% for js in media.render_js %} 
{{ js|safe }}{% endfor %} 
</body>
}}}
 
A two lines modification."	New feature	closed	Forms	dev	Normal	fixed	media		Accepted	1	0	1	0	0	0
