Django templates folders
I'm experimenting with Django, and figuring out how to set urls.py , and how the URLs work. I've configured urls.py in the root of the project, to directs to my blog and admin. But now I want to add a page to my home, so at localhost:8000 . So I've added to following code to the urls.py in the root of the project: from django.views.generic.simple import direct_to_template urlpatterns = patterns('', (r"^$", direct_to_template, {"template": "base.html"}), ) The problem is that it searches for the template in blog/templates/... Instead of the templates folder in my root. Which contains the base