mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-05-26 08:03:47 +00:00
Enabled egg template loader in case someone is trying to test with django-reversion which might get zipped when installed with easy_install
This commit is contained in:
parent
991367c3c8
commit
e266593ac4
1 changed files with 4 additions and 3 deletions
|
|
@ -54,7 +54,7 @@ SECRET_KEY = 'e-%(1e1f8ar2v)_8d!%-75a2ag(w(ht*l%n-wts5$li!5=97)8'
|
|||
TEMPLATE_LOADERS = (
|
||||
'django.template.loaders.filesystem.load_template_source',
|
||||
'django.template.loaders.app_directories.load_template_source',
|
||||
# 'django.template.loaders.eggs.load_template_source',
|
||||
'django.template.loaders.eggs.load_template_source',
|
||||
'dbtemplates.loader.load_template_source',
|
||||
)
|
||||
|
||||
|
|
@ -81,9 +81,10 @@ INSTALLED_APPS = (
|
|||
'django.contrib.admin',
|
||||
'django.contrib.flatpages',
|
||||
'dbtemplates',
|
||||
#'reversion',
|
||||
)
|
||||
|
||||
# Uncomment the following two settings to use the file system cache backend.
|
||||
# It will cache in the directory "cache" inside the example project directory.
|
||||
# DBTEMPLATES_CACHE_BACKEND = "dbtemplates.cache.FileSystemBackend"
|
||||
# DBTEMPLATES_CACHE_DIR = "cache"
|
||||
#DBTEMPLATES_CACHE_BACKEND = "dbtemplates.cache.FileSystemBackend"
|
||||
#DBTEMPLATES_CACHE_DIR = "cache"
|
||||
|
|
|
|||
Loading…
Reference in a new issue