Put simply, is there a way to get generic views to work?
If I try the following in urls.py:
publisher_info = {
'queryset': Publisher.objects.all(),
}
urlpatterns = patterns('',
(r'^publishers/$', list_detail.object_list, publisher_info)
)
I get the following error:
AttributeError at /publishers 'Query'
object has no attribute '_clone'
Is this due to the fact that Django models aren't supported on App Engine and google-app-engine-django hasn't been able to port over all associated code? If so, would it be easy to fix myself?