Created
April 14, 2013 15:42
-
-
Save ciceroverneck/5383138 to your computer and use it in GitHub Desktop.
Template loader com cache
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Com Cache: | |
TEMPLATE_LOADERS = ( | |
('django.template.loaders.cached.Loader', ( | |
'django.template.loaders.filesystem.Loader', | |
'django.template.loaders.app_directories.Loader', | |
)), | |
) | |
# Default: | |
TEMPLATE_LOADERS = ( | |
'django.template.loaders.filesystem.Loader', | |
'django.template.loaders.app_directories.Loader', | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment