From 5c788770167bc236fb1e16ac6d1414db26fee26c Mon Sep 17 00:00:00 2001 From: Matthew Wood Date: Mon, 18 Mar 2013 15:48:47 -0400 Subject: [PATCH] [1.5.x] Fixed #20051 -- Specified where to define `TEMPLATE_DIRS`. --- docs/intro/tutorial02.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt index 1f7c0e85010..e7849d7b4f4 100644 --- a/docs/intro/tutorial02.txt +++ b/docs/intro/tutorial02.txt @@ -445,8 +445,8 @@ live anywhere on your filesystem that Django can access. (Django runs as whatever user your server runs.) However, keeping your templates within the project is a good convention to follow. -By default, :setting:`TEMPLATE_DIRS` is empty. So, let's add a line to it, to -tell Django where our templates live:: +Open your settings file (``mysite/settings.py``, remember) and add a +:setting:`TEMPLATE_DIRS` setting:: TEMPLATE_DIRS = ( '/path/to/mysite/templates', # Change this to your own directory.