﻿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
5517	[newforms-admin] allow defining media on base forms	Petr Marhoun <petr.marhoun@…>	nobody	"I think it should be possible to define media on base form. Example from the attached patch:

{{{
>>> class FormWithMedia(BaseForm):
...     class Media:
...         js = ['form.js']
...         css = {'all': ['form.css']}
>>> CategoryFormWithMedia = form_for_model(Category, form=FormWithMedia)
>>> f = CategoryFormWithMedia()
>>> print f.media
<link href=""form.css"" type=""text/css"" media=""all"" rel=""stylesheet"" />
<script type=""text/javascript"" src=""form.js""></script>
}}}
"		closed	Forms	newforms-admin		invalid	media, form_for_model, nfa-someday		Design decision needed	1	0	0	0	0	0
