Updated settings.txt and templates_python.txt to clarify that TEMPLATE_DIRS requires Unix-style slashes.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1808 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
25aacbb9f1
commit
c62369361b
|
@ -584,8 +584,10 @@ TEMPLATE_DIRS
|
|||
|
||||
Default: ``()`` (Empty tuple)
|
||||
|
||||
List of locations of the template source files, in search order. See the
|
||||
`template documentation`_.
|
||||
List of locations of the template source files, in search order. Note that
|
||||
these paths should use Unix-style forward slashes, even on Windows.
|
||||
|
||||
See the `template documentation`_.
|
||||
|
||||
TEMPLATE_FILE_EXTENSION
|
||||
-----------------------
|
||||
|
|
|
@ -382,6 +382,8 @@ that contain full paths to your template directory(ies). Example::
|
|||
"/home/html/templates/default",
|
||||
)
|
||||
|
||||
Note that these paths should use Unix-style forward slashes, even on Windows.
|
||||
|
||||
The Python API
|
||||
~~~~~~~~~~~~~~
|
||||
|
||||
|
|
Loading…
Reference in New Issue