Re: Multi-table inheritance and child model admin add pages

2010-05-20 Thread peppo
Thanks Karen for the reply. I overlooked the ticket you mention. Just for reference for others reading in the future this thread, here is a simpler (and more portable) solution other than applying the patch attached to http://code.djangoproject.com/ticket/7623. If you modify the child model as fo

Re: Multi-table inheritance and child model admin add pages

2010-05-20 Thread Karen Tracey
On Thu, May 20, 2010 at 4:26 PM, peppo wrote: > I have the following problem with admin and multi table inheritance I > don't understand (django 1.1.1). > > Model definition > > class Place(models.Model): >name = models.CharField(max_length=50) >address = models.CharField(max_length=80) >