#9423: multi inline model
---------------------------+------------------------------------------------
Reporter: anonymous | Owner: nobody
Status: new | Milestone:
Component: Uncategorized | Version: 1.0
Keywords: | Stage: Unreviewed
Has_patch: 0 |
---------------------------+------------------------------------------------
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 ?
--
Ticket URL: <http://code.djangoproject.com/ticket/9423>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---