> > If you are using Django under GAE, just add your 404.html and 500.html > > templates to the templates folder. Django will take care of the rest. > > thank you for your reply. Let me slightly rephrase the question - can > this be done with the built in django (I believe Google have built in > v. 0.96)? I would liek to avoid having to maintain a separate django > installation. If yes, how do I determine/configure what folder is the > templates folder? I am sorry if the question sounds lame, I am a n00b.
I didn't test it but the documentation says it's the same in 0.96: http://www.djangoproject.com/documentation/0.96/request_response/#the-404-page-not-found-view The template directory is specified in the settings.py, for example: TEMPLATE_DIRS = ( os.path.join(os.path.dirname(__file__), 'templates'), ) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" 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/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
