Re: inheriting a models.Model inherited class

2007-06-06 Thread Russell Keith-Magee
On 6/6/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Advice? Model inheritance is a planned, but not-yet-implemented feature. Watch this space! http://code.djangoproject.com/wiki/ModelInheritance However, there is a workaround, using OneToOneFields. http://www.djangoproject.com/document

inheriting a models.Model inherited class

2007-06-06 Thread [EMAIL PROTECTED]
I hope the subject isn't too confusing but what I want to do seems pretty common so I think I might be missing something obvious (or should be doing in a different way) class Person(models.Model): name = models.TextField() def get_whatever: pass clas