On Wed, 2007-05-23 at 17:49 +0200, Atilla wrote:
> On 23/05/07, OliverMarchand <[EMAIL PROTECTED]> wrote:
> >
> > Dear Djangos,
> >
> > Is it possible to subclass a model? This example somehow doesn't work
> > for in the sense that I only see the geography on the admin screen.
> >
> > ----
> > from django.db import models
> >
> > class Geography(models.Model):
> >     name = models.CharField(maxlength=30)
> >     def __str__(self):
> >         return self.name
> >     class Admin:
> >         pass
> >
> > class Continent(Geography):
> >     pass
> >
> > class Country(Geography):
> >     continent = models.ForeignKey(Continent)
> > ---
> >
> > Any ideas?
> >
> > greetings, Oliver
> >
> 
> Model Inheritance is, sadly, not supported and the branch that
> implements that is stalled (or is it ?).


Given that there is no branch, that statement is incorrect.

Model inheritance is two stations down the line. Unicode gets finished
first, then query refactor then model inheritance.

Regards,
Malcolm



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to