﻿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
9423	multi inline model	anonymous	nobody	"I have this in my file admin.py :

class AInLine(admin.StackedInline):
    model = A
    
class BAdmin(admin.ModelAdmin):
    model = B
    inlines = [AInLine]
    
class BInLine(admin.StackedInline):
    model = B

class CAdmin(admin.ModelAdmin):
    model = C
    inlines = [BInLine]
    
In the admin interface 

+ the inline model AInLine is in BAdmin form : it's correct.

+ the inline model BInLine in CAdmin form : it's correct.

But I don't have in CAdmin form the inline model AInLine, it's normal ?

Can i have multiple inline model in one form with my admin.py file ?"		new	Uncategorized	1.0					Unreviewed	0	0	0	0	0	0
