django: How to get model class from model name
How do you get the model class object from a string containing model name?
This came up multiple times during SeenReport development. While recording views, saving votes and adding comment on an object, I had to get the model class using the model name. The scenario would be,
The view receives the model name and object id
Fetch [...]


