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:
>
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:
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):
3 matches
Mail list logo