I made sure I have templates/ this time:
path = os.path.join(os.path.dirname(__file__), 'templates/
index.html')
self.response.out.write(template.render(path, template_values))
And I get:
Traceback (most recent call last):
File "/base/python_lib/versions/1/google/appengine/ext/webapp/
__init__.py", line 499, in __call__
handler.get(*groups)
File "/base/data/home/apps/kambizkamrani/1.25/main.py", line 44, in
get
self.response.out.write(template.render(path, template_values))
File "/base/python_lib/versions/1/google/appengine/ext/webapp/
template.py", line 80, in render
t = load(template_path, debug)
File "/base/python_lib/versions/1/google/appengine/ext/webapp/
template.py", line 108, in load
template = django.template.loader.get_template(file_name)
File "/base/python_lib/versions/1/django/template/loader.py", line
79, in get_template
source, origin = find_template_source(template_name)
File "/base/python_lib/versions/1/django/template/loader.py", line
72, in find_template_source
raise TemplateDoesNotExist, name
TemplateDoesNotExist: index.html
Kambiz
On Jun 8, 7:50 am, "
bowman.jos...@gmail.com" <
bowman.jos...@gmail.com>
wrote: