I\'m using Django Appengine http://www.allbuttonspressed.com/projects/djangoappengine so I can use Django 1.3 and everything seems to work fine.
I am trying to conf开发者_C百科igure the Django admin site for my django application by following the instructions here: https://docs.djangoproject.com/en/dev/ref/contrib/admin/ .
I am building a blog site in Google App Engine, using django-nonrel and I need a way to store and display images in blog posts etc.
I have a model like the following: class Page(ContentBase): url_slug = models.SlugFiel开发者_C百科d()
What is the performance impact of developing applications on Google App Engine using django-nonrel as opposed to webapp?
I have 3 models: Company, Project and Contact with the respective relationships: Company-Project (M2M)
I want to use appengine bulkloader 开发者_如何学Cwith my django-nonrel project as suggested in http://thomas.broxrost.com/category/google-app-engine/ and in http://blog.suinova.com/2009/03/tutorial-on
How can I use a query cursor with Django-Nonrel? If there is no way currently, it would be appreciated to tell me where to look at in Django-Nonrel.
I\'m trying to move my gae webapp project to django non-rel. I\'m pretty new to Python and Django (non-rel). Right now I\'m setting up the admin backend.
I\'m currently keeping my templates in /projectdir/static/html/. I\'ve begun to have enough of them that I\'ve created a subdirectory: /projectdir/static/html/tag_request/. If I want to have a templat