Re: following reverse relationship of an extended model

2010-04-28 Thread Nick Serra
Yeah, that is going to be my fallback, I was just curious on an actual reverse relationship solution to the situation. Thanks for the input! On Apr 28, 4:12 pm, zinckiwi wrote: > > class Account(models.Model): > >     name = CharField > > > class Entry(models.Model): > >    

Re: following reverse relationship of an extended model

2010-04-28 Thread zinckiwi
> class Account(models.Model): >     name = CharField > > class Entry(models.Model): >     account = ForeignKey(Account) > > class Page(Entry): >     name = CharField > > There's my simple example. I want to get all pages that belong to > Account. account.page_set.all() does not relate, and I can