Re: Stuck with TemplateDoesNotExist at /

2013-09-02 Thread vogernewsletters
bably the path is wrong, try to put this in your settings: TEMPLATE_DIRS = (os.path.join(os.path.dirname(__file__), '..', 'templates').replace('\\','/'),) About the views, I think you don't need to code it if in your urls.py you already used the

Stuck with TemplateDoesNotExist at /

2013-09-02 Thread vogernewsletters
Hi I am new to both Python and Django. I am studying various tutorials and now I am following the tutorial from http://gettingstartedwithdjango.com where the author walks through the creation of a simple microblog. I tried to follow the tutorial to the p