summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMatthew Wood <woodm1979@gmail.com>2013-03-18 15:48:47 -0400
committerSimon Charette <charette.s@gmail.com>2013-03-18 15:48:47 -0400
commit5c788770167bc236fb1e16ac6d1414db26fee26c (patch)
tree5184e37676be6d55d8e389cb405b4d5327909a3a /docs
parent9e920a488846db7398c0d6584f824f32b2a0dd42 (diff)
[1.5.x] Fixed #20051 -- Specified where to define `TEMPLATE_DIRS`.
Diffstat (limited to 'docs')
-rw-r--r--docs/intro/tutorial02.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt
index 1f7c0e8501..e7849d7b4f 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.