Re: Help with some models inheritance and the use of default

2009-05-25 Thread V
On May 6, 3:56 pm, Felix wrote: > I have the next models: > > class Place(models.Model): >     currency = models.CharField(_('currency'), max_length=128, > blank=True, null=True) >     language = models.CharField(_('official language'), > max_length=128, blank=True, null=True) >     class Meta: >

Re: Help with some models inheritance and the use of default

2009-05-06 Thread George Song
On 5/6/2009 6:56 AM, Felix wrote: > I have the next models: > > class Place(models.Model): > currency = models.CharField(_('currency'), max_length=128, > blank=True, null=True) > language = models.CharField(_('official language'), > max_length=128, blank=True, null=True) > class Meta:

Help with some models inheritance and the use of default

2009-05-06 Thread Felix
I have the next models: class Place(models.Model): currency = models.CharField(_('currency'), max_length=128, blank=True, null=True) language = models.CharField(_('official language'), max_length=128, blank=True, null=True) class Meta: abstract = True class Country(Place):