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

2010-05-20 Thread peppo
the database level: just change the model definition (and probably some definitions in admin. py) and all is OK. regards, __peppo On 20 Mag, 22:34, Karen Tracey wrote: > On Thu, May 20, 2010 at 4:26 PM, peppo wrote: > > I have the following problem with admin and multi table inhe

Multi-table inheritance and child model admin add pages

2010-05-20 Thread peppo
Hi, 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) class Restaurant(Place): serves_hot_dogs = models.Bo