Commit c6f277f9 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #7174 -- Corrected the default setting for TEMPLATE_LOADERS described in...

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
parent b3653db4
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -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`_.