I am developing a Django application using Oracle with no modifications to DB schema allowed. I have one table in which all Thesis exist, which can be seperated in two disjoint sets: PhdThesis and Bsc
Is there a way to determine what the \'real\' class of a Django database object is, after it has been returned from a query for on a base class?
I\'m trying to get django-haystack (using a xapian backend) to index my model here for search, by the name and description fields.
I\'m working on my first real Django project after years of PHP programming, and I am running into a problem with my models.First, I noticed that I was copying and pasting code between the models, and
I\'m looking to do this: class Place(models.Model): name = models.CharField(max_length=20) rating = models.DecimalField()