Re: Configuring the Admin of a Child Class

2009-04-23 Thread vitramarweb
On Apr 24, 12:07 am, Heigler wrote: > Hello, > I think the problem isn't currency in your ModelAdmin, i think the > problem is the field "city", where is it in your CountryModel? Thanks for the answer. I already correct that, and also in the import (it was a bad copy- paste) and still getting

Configuring the Admin of a Child Class

2009-04-23 Thread vitramarweb
Hi, I am still pretty new here and a bit confused. I have the next models: Place is an abstract class class Place(models.Model): place = models.CharField(_('place'), max_length=128) currency = models.CharField(_('currency'), max_length=128) #... #... and many other generic data