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

class PersonExtra(Person):
        def get_whatever2:
                pass


p = PersonExtra.objects.get(id=3)
p.get_whatever # fine
p.get_whatever2 # does not exist

type(p) # models.Person

Advice?

Thanks


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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