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:
Russell Keith-Magee 2008-06-17 13:37:31 +00:00
parent b3653db4f0
commit c6f277f972
1 changed files with 4 additions and 1 deletions

View File

@ -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`_.