[Answer]-Django: change the model class returned from a QuerySet?

1👍

You want a Proxy Model : https://docs.djangoproject.com/en/1.6/topics/db/models/#proxy-models

Also, model specific querying is best implemented using a custom ModelManager than using classmethods.

Leave a comment