diff options
Diffstat (limited to 'example_project/settings.py')
-rw-r--r-- | example_project/settings.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/example_project/settings.py b/example_project/settings.py index 84462b396..06e32ba58 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -32,6 +32,16 @@ BASE_URL = "/" URL_PATH = "" EXTRA_VERSION = 'git' +STATICFILES_FINDERS = ( + 'django.contrib.staticfiles.finders.FileSystemFinder', + 'django.contrib.staticfiles.finders.AppDirectoriesFinder', + 'compressor.finders.CompressorFinder', +) + +STATICFILES_DIRS = ( + ROOT_PATH + "../bootstrap_datepicker/static", +) + ODT_TEMPLATE = ROOT_PATH + "../ishtar_common/static/template.odt" LOGIN_REDIRECT_URL = "/" + URL_PATH @@ -142,7 +152,6 @@ INSTALLED_APPS = [ 'django.contrib.humanize', 'registration', # 'geodjangofla', - 'ishtar_pdl', 'ishtar_common', 'archaeological_files_pdl', 'archaeological_files', @@ -151,6 +160,7 @@ INSTALLED_APPS = [ 'archaeological_warehouse', 'archaeological_finds', 'ajax_select', + 'compressor', # 'debug_toolbar', ] |