Skip to content

Instantly share code, notes, and snippets.

@ciceroverneck
Created April 14, 2013 15:42
Show Gist options
  • Save ciceroverneck/5383138 to your computer and use it in GitHub Desktop.
Save ciceroverneck/5383138 to your computer and use it in GitHub Desktop.
Template loader com cache
# 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