Fixed #7174 -- Corrected the default setting for TEMPLATE_LOADERS described in the settings docs. Thanks, pbx.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7676 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
b3653db4f0
commit
c6f277f972
|
@ -958,7 +958,10 @@ See the `template documentation`_.
|
|||
TEMPLATE_LOADERS
|
||||
----------------
|
||||
|
||||
Default: ``('django.template.loaders.filesystem.load_template_source',)``
|
||||
Default::
|
||||
|
||||
('django.template.loaders.filesystem.load_template_source',
|
||||
'django.template.loaders.app_directories.load_template_source')
|
||||
|
||||
A tuple of callables (as strings) that know how to import templates from
|
||||
various sources. See the `template documentation`_.
|
||||
|
|
Loading…
Reference in New Issue