cache templates

This commit is contained in:
Chris Meyers 2015-05-17 16:24:08 -04:00
parent 30954861b3
commit 7ce9f3f38d

View File

@ -135,6 +135,13 @@ TEMPLATE_DIRS = (
os.path.join(BASE_DIR, 'templates'),
)
TEMPLATE_LOADERS = (
('django.template.loaders.cached.Loader', (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
)),
)
ROOT_URLCONF = 'awx.urls'
WSGI_APPLICATION = 'awx.wsgi.application'