Re: Admin Inline inside another admin inline

2010-08-07 Thread Alessandro Ronchi
On 4 Ago, 16:11, Alessandro Ronchi wrote: > It's not possible to make nested inline. > I'm trying to do the same thing, with this > solution:http://packages.python.org/django-easymode/tree/index.html?highlight=... I solved my issue: I didn't notice the related things are available only after sa

Re: Admin Inline inside another admin inline

2010-08-04 Thread Alessandro Ronchi
2010/7/3 Sean Brant > > Im not even sure if this is best way to display things, I would like > one main product edit screen that lets you attach "product types" > which have "sizes" to a "product", it seems jumping between a bunch of > screens is not good ux. Wondering if I need to create a custo

Admin Inline inside another admin inline

2010-07-03 Thread Sean Brant
I have these models and model admins and I was hoping inlines = [] inside a admin.TabularInline would work, but it doesn't seem to. class Size(models.Model): pass class Product(models.Model): pass class ProductType(models.Model): titl