﻿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
10938	add inlines into fieldsets	tangc	nobody	"''''ModelAdmin has fieldsets and inlines. e.g.
Ref: [http://docs.djangoproject.com/en/dev/intro/tutorial02/], 
{{{
fieldsets = [
        (None,               {'fields': ['question']}),
        ('Date information', {'fields': ['pub_date']}),
    ]

inlines = [ChoiceInline]
}}}

If can put the inlines into the fieldsets, it would be great. such as:

{{{
fieldsets = [
        (None,               {'fields': ['question']}),
        ('inlines sample',   {inlines : [ChoiceInline]}),
        ('Date information', {'fields': ['pub_date']}),
        ('inlines sample 2', {inlines : [SomeOtherChoiceInline]}),
    ]
}}}"	New feature	closed	contrib.admin	dev	Normal	duplicate	inlines fieldsets	cg@… ckesselh gargr gezuru@…	Accepted	0	0	0	0	0	1
