Given a string Bistro, is it possible to retrieve its corresponding model of the same name in Django?
Yes.
model = ContentType.objects.get(model='Bistro').model_class()
http://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/
celopes
2009-10-30 18:53:21