Thanks for the help. Is get_object_for_this_type() not made to handle multiple objects? If more than one object is returned I get this error: get() returned more than one Entry.
On Nov 19, 4:10 am, David De La Harpe Golden <[email protected]> wrote: > Karen Tracey wrote: > > Undocumented internal routine, but unlikely to change: > > Just to note the contenttypes framework has a documented > way:http://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/#method... > > from django.contrib.contenttypes.models import ContentType > model_type = ContentType.objects.get(app_label=app_name, model=model_name) > model_class = model_type.model_class() -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=.

