re-indent template performance code snippet

pull/2812/merge
Matt Westcott 2016-11-28 13:45:42 +00:00
rodzic 16213db0f8
commit 02360e6651
1 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -74,12 +74,12 @@ The overhead from reading and compiling templates can add up. In some cases a si
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
'OPTIONS': {
'loaders': [
('django.template.loaders.cached.Loader', [
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
]),
],
'loaders': [
('django.template.loaders.cached.Loader', [
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
]),
],
},
}]