From c60853e2880c2344d4b61ecb8240264160f01784 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Mon, 23 Oct 2006 07:55:16 +0000 Subject: [PATCH] Fixed #2854 -- Incorporated a small suggestion which might make it clearer where TEMPLATE_DIRS could point. Thanks, bonovoxmofo@gmail.com. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3915 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/tutorial02.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial02.txt b/docs/tutorial02.txt index bc1717e67c..06cde251e5 100644 --- a/docs/tutorial02.txt +++ b/docs/tutorial02.txt @@ -377,7 +377,7 @@ By default, ``TEMPLATE_DIRS`` is empty. So, let's add a line to it, to tell Django where our templates live:: TEMPLATE_DIRS = ( - "/home/mytemplates", # Change this to your own directory. + "/home/my_username/mytemplates", # Change this to your own directory. ) Now copy the template ``admin/base_site.html`` from within the default Django