Re: Best way to accomplish model inheritance

2006-12-24 Thread Aaron Jacobs
Thanks so much for the tips, Favo. There are some points that are unclear to me, so I hope you don't mind if I ask a few questions. On 12/24/06, favo <[EMAIL PROTECTED]> wrote: 1. as you said, use OneToOne field class Place(models.Model):

Re: Best way to accomplish model inheritance

2006-12-24 Thread favo
Hi Aaron, I know there're two way to use model inheritance with current django. both are not perfect, you could choice what you need. That's say model inheritance is still not a feature of django, but should be one imo. 1. as you said, use OneToOne field class Place(models.Model):

Best way to accomplish model inheritance

2006-12-22 Thread Aaron Jacobs
Hey everyone, I'm currently attempting to design my first Django application. The model framework seems to be pretty nice -- it reminds me a bit of Apple's Core Data, except more geared toward web development. The model for my application conceptually needs something like model inheritance,