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

2010-06-05 Thread elysianfields
plate_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 <elysian.field...@gmail.com> wrote: &g

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

2010-06-05 Thread elysianfields
. Thoughts? On Jun 5, 4:16 pm, elysianfields <elysian.field...@gmail.com> 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_DIRS = ( &

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