summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial02.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2012-11-14 05:46:30 -0500
committerTim Graham <timograham@gmail.com>2012-11-14 05:46:30 -0500
commit2dbfa66f4db54c2bbac0f160de96a91fcf39997d (patch)
tree0419149fa41d5d4aec005748d59a04d2670a7d1e /docs/intro/tutorial02.txt
parent550ddc66b496473c8ee282c7ab6be5885a359d75 (diff)
Fixed #19289 - Removed an out of place sentence in tutorial 2.
Thanks colinnkeenan for the report.
Diffstat (limited to 'docs/intro/tutorial02.txt')
-rw-r--r--docs/intro/tutorial02.txt5
1 files changed, 0 insertions, 5 deletions
diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt
index b87b280d7c..2c8d25ae6f 100644
--- a/docs/intro/tutorial02.txt
+++ b/docs/intro/tutorial02.txt
@@ -445,11 +445,6 @@ 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.
-When you’ve done that, create a directory polls in your template directory.
-Within that, create a file called index.html. Note that our
-``loader.get_template('polls/index.html')`` code from above maps to
-[template_directory]/polls/index.html” on the filesystem.
-
By default, :setting:`TEMPLATE_DIRS` is empty. So, let's add a line to it, to
tell Django where our templates live::