Thanks for the help.
Currently I import in gae:
from google.appengine.ext.webapp import template
then use this to render:
self.response.out.write(template.render(‘tPage1.htm’, templateInfo ))
I believe the template that Google supplied for Django templete is version 0.96.
How do I setup and import the newer version of only the Django template version 1.2.1?
Brian
Until Issue 3230 http://code.google.com/p/googleappengine/issues/detail?id=3230 is resolved and Django 1.2 is added as a library, you need to zip up django 1.2.1 and include it with your project.
Is there something specific you want out of 1.2 that isn’t in 1.1? Because you could use 1.1 since it is available as a library already by following this http://code.google.com/intl/en-US/appengine/docs/python/tools/libraries.html#Django
which is: