diff options
| author | Tim Graham <timograham@gmail.com> | 2015-03-27 09:57:58 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-03-27 09:57:58 -0400 |
| commit | 2acf9d099d29f45c829ee0127e55b7cfdd201995 (patch) | |
| tree | 3db14ff84f89b6ee12ab39638fff3a7981cb31d9 /docs/intro/tutorial02.txt | |
| parent | 98c5370ef673bc83deaf24c197e0bb22a75071e3 (diff) | |
Fixed #24519 -- Clarified location of templates directory in tutorial 2.
Diffstat (limited to 'docs/intro/tutorial02.txt')
| -rw-r--r-- | docs/intro/tutorial02.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt index 4337d02d68..185c8373b1 100644 --- a/docs/intro/tutorial02.txt +++ b/docs/intro/tutorial02.txt @@ -488,10 +488,10 @@ system. Customizing your *project's* templates -------------------------------------- -Create a ``templates`` directory in your project directory. Templates can -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. +Create a ``templates`` directory in your project directory (the one that +contains ``manage.py``). Templates can 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. Open your settings file (:file:`mysite/settings.py`, remember) and add a :setting:`DIRS <TEMPLATES-DIRS>` option in the :setting:`TEMPLATES` setting: |
