Changes between Initial Version and Version 2 of Ticket #9423


Ignore:
Timestamp:
Oct 22, 2008, 12:13:01 PM (16 years ago)
Author:
Karen Tracey
Comment:

Beaten to the close! But I'll post this anyway since I think (though it isn't entirely clear from the description) that it's looking for nested, not simply multiple, inlines, and that's already requested in another ticket.

As written this ticket is more appropriate as a question on django-users -- you are asking if something is supported, not reporting a bug. Please do not use the tracker for support questions. As it is I think what you want nested inlines, which is #9025.

Also please do use the preview button, your code examples were hard to read as originally posted due to improper formatting.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9423

    • Property Resolutioninvalid
    • Property Status newclosed
  • Ticket #9423 – Description

    initial v2  
    11I have this in my file admin.py :
    2 
     2{{{
    33class AInLine(admin.StackedInline):
    44    model = A
     
    1414    model = C
    1515    inlines = [BInLine]
    16    
     16}}}   
    1717In the admin interface
    1818
Back to Top