diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-06-02 05:06:36 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-06-02 05:06:36 +0000 |
| commit | c18dc3d7598c61ce6f51467132f0eff3246b25b0 (patch) | |
| tree | 8ace747d358dfd65be01d925af573e9b78be80ec /docs/templates_python.txt | |
| parent | 5f2b40d4c9b3df5b6e338293ae8144ffcbbf0dd2 (diff) | |
Fixed #1870 -- Clarified (hopefully) the TEMPLATE_DIRS section of docs/templates_python.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3061 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/templates_python.txt')
| -rw-r--r-- | docs/templates_python.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/templates_python.txt b/docs/templates_python.txt index 6c33052792..dea5bcbee6 100644 --- a/docs/templates_python.txt +++ b/docs/templates_python.txt @@ -368,6 +368,11 @@ Generally, you'll store templates in files on your filesystem rather than using the low-level ``Template`` API yourself. Save templates in a directory specified as a **template directory**. +Django searches for template directories in a number of places, depending on +your template-loader settings (see "Loader types" below), but the most basic +way of specifying template directories is by using the ``TEMPLATE_DIRS`` +setting. + The TEMPLATE_DIRS setting ~~~~~~~~~~~~~~~~~~~~~~~~~ |
