Re: Inherited classes and generic views - curiosity.

2008-10-23 Thread Malcolm Tredinnick
On Sun, 2008-10-19 at 12:29 -0700, Scott SA wrote: > When passing a QuerySet of objects which inherit part of their model > from another class, generic views only seems to respond to the parent > class: > > Here's a simplified example: > > class ParentClass(models.Model): > name_last = mode

Inherited classes and generic views - curiosity.

2008-10-19 Thread Scott SA
When passing a QuerySet of objects which inherit part of their model from another class, generic views only seems to respond to the parent class: Here's a simplified example: class ParentClass(models.Model): name_last = models.CharField(max_length=64) name_first = models.CharField(max_le