Abstract classes and inhertience

2012-09-16 Thread Lachlan Musicman
Hola, I have an abstract base class, Person, with three children: Applicants, Students and Staff. I have two questions. As per docs ($PATH/topics/db/managers.html#custom-managers-and-model-inheritance) I have three managers for the Abstract class: people = models.Manager() men = MaleManager()

Re: Abstract classes and inhertience

2012-09-16 Thread Stephen Anto
Hi, Have you tried to fetch all data from models like Model.objects.all() It it is the way to fetch all data. Thank you for visitingFor Django On Mon, Sep 17, 2012 at 6:50 AM, Lachlan Musicman wrote: > Hola, > > I have an abst