Re: Nested Foreign Key relationships in Admin?

2012-05-21 Thread Mike Dewhirst
On 21/05/2012 2:55pm, Mike Dewhirst wrote: On 21/05/2012 2:45pm, Mike Dewhirst wrote: On 21/05/2012 1:57pm, Aditya Sriram M wrote: I'd like to represent foreign key relationships inside the Admin interface when there are multiple nested one-to-many relationships. Provided you have the admin a

Re: Nested Foreign Key relationships in Admin?

2012-05-21 Thread Matt Schinckel
The admin.*Inline objects will not render nested inlines. See https://code.djangoproject.com/ticket/9025 Matt. -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-use

Re: Nested Foreign Key relationships in Admin?

2012-05-20 Thread Mike Dewhirst
On 21/05/2012 2:45pm, Mike Dewhirst wrote: On 21/05/2012 1:57pm, Aditya Sriram M wrote: I'd like to represent foreign key relationships inside the Admin interface when there are multiple nested one-to-many relationships. Provided you have the admin app enabled, in your admin.py in the same di

Re: Nested Foreign Key relationships in Admin?

2012-05-20 Thread Mike Dewhirst
On 21/05/2012 1:57pm, Aditya Sriram M wrote: I'd like to represent foreign key relationships inside the Admin interface when there are multiple nested one-to-many relationships. Provided you have the admin app enabled, in your admin.py in the same directory as your models.py file you need some

Re: Nested Foreign Key relationships in Admin?

2012-05-20 Thread Aditya Sriram M
I too have a similar issue. Any workarounds to achieve this... On Saturday, 16 December 2006 09:52:39 UTC+5:30, Dan wrote: > > I'd like to represent foreign key relationships inside the Admin > interface when there are multiple nested one-to-many relationships. > Here's a simple example model to d

Nested Foreign Key relationships in Admin?

2006-12-16 Thread Dan
I'd like to represent foreign key relationships inside the Admin interface when there are multiple nested one-to-many relationships. Here's a simple example model to demonstrate, using the edit_inline=models.TABULAR parameter: __ class Root(models.Model): name = models.CharField(maxl