I'm stuck with the inline Tree-like-eiditing of related models on same page. I've got three models, A, B and C.
Class A Class B fb = foreignkey(A) Class C fc = foreignkey(B) In admin.py I'm doing something like AdminA inlines = [inlineB] AdminB inlines = [inlineC] I want that when I edit/add model A, I should be able to add ModelB inline, and add Model B's related Model C entries. I was trying out inlineformsets, but can't find out how to use them for my purpose. Moreover, I found <a href="http://stackoverflow.com/questions/702637/ django-admin-inline-inlines-or-three-model-editing-at-once">this old discussion on same problem</a>. But again, since I'm new to Django, I don't know how to make it work. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.