vote up 0 vote down star
1

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?

flag

2 Answers

vote up 0 vote down

It looks like this project should provide that functionality as a core feature.

http://code.google.com/p/app-engine-patch/

link|flag
Thanks, but while I'm aware of app-engine-patch I'm specifically asking about [google-app-engine-django][1]. It looks like it is [not possible][2]. [1]: code.google.com/p/google-app-engine-django/… [2]: code.google.com/p/google-app-engine-django/… – pr1001 Oct 15 at 13:16
Yeah. It is unfortunate that app engine and django don't play more nicely together. – Paul McMillan Oct 15 at 13:51
vote up 0 vote down

The answer seems to be No.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.