Re: TemplateDoesNotExist - even though the template is in the correct folder

2010-06-05 Thread elysianfields
path.join(template_dir, template_name) This solved the issue for me. A better fix would be to make Django use Python directly through Windows, not through Cygwin, but I'm not sure how to set it up now that it's already installed. Cheers. On Jun 5, 5:40 pm, elysianfields wrote: >

Re: TemplateDoesNotExist - even though the template is in the correct folder

2010-06-05 Thread elysianfields
if that can be changed and how. Thoughts? On Jun 5, 4:16 pm, elysianfields wrote: > I did see a very similar post in this group, but it did not help me > with my problem. I'm probably overlooking something simple, this is > what I have: > > # SETTINGS.PY: > TEMPLATE_D

TemplateDoesNotExist - even though the template is in the correct folder

2010-06-05 Thread elysianfields
I did see a very similar post in this group, but it did not help me with my problem. I'm probably overlooking something simple, this is what I have: # SETTINGS.PY: TEMPLATE_DIRS = ( "D:/django-projects/localsite/templates", ) # POLLS/VIEWS.PY: from django.http import HttpResponse from local