diff options
author | kinitrupti | 2016-10-04 12:01:02 +0530 |
---|---|---|
committer | kinitrupti | 2016-10-04 12:01:02 +0530 |
commit | 15ab83ff1b57dab493ac366d866f3e26765599eb (patch) | |
tree | 0a9364c4c3c8b38182a2bfda3b97f859c084affe /PythonTBC/settings.py | |
parent | c5c3c7b6c4794d960ead6137d251cd9b8f423aa4 (diff) | |
download | Python-TBC-Interface-15ab83ff1b57dab493ac366d866f3e26765599eb.tar.gz Python-TBC-Interface-15ab83ff1b57dab493ac366d866f3e26765599eb.tar.bz2 Python-TBC-Interface-15ab83ff1b57dab493ac366d866f3e26765599eb.zip |
Upgraded to django 1.9
Diffstat (limited to 'PythonTBC/settings.py')
-rw-r--r-- | PythonTBC/settings.py | 51 |
1 files changed, 39 insertions, 12 deletions
diff --git a/PythonTBC/settings.py b/PythonTBC/settings.py index 28eda1d..e73bc25 100644 --- a/PythonTBC/settings.py +++ b/PythonTBC/settings.py @@ -4,7 +4,7 @@ from os.path import * from local import * DEBUG = True -TEMPLATE_DEBUG = DEBUG +#TEMPLATE_DEBUG = DEBUG ADMINS = ( @@ -94,11 +94,11 @@ STATICFILES_FINDERS = ( SECRET_KEY = 'a8zm$)bj&k9p2$1*biby#mo5fga#8$sr4&cmz%h=vum-xkbkme' # List of callables that know how to import templates from various sources. -TEMPLATE_LOADERS = ( - 'django.template.loaders.filesystem.Loader', - 'django.template.loaders.app_directories.Loader', +#TEMPLATE_LOADERS = ( +# 'django.template.loaders.filesystem.Loader', +# 'django.template.loaders.app_directories.Loader', # 'django.template.loaders.eggs.Loader', -) +#) MIDDLEWARE_CLASSES = ( 'django.middleware.common.CommonMiddleware', @@ -115,15 +115,15 @@ ROOT_URLCONF = 'PythonTBC.urls' # Python dotted path to the WSGI application used by Django's runserver. WSGI_APPLICATION = 'PythonTBC.wsgi.application' -TEMPLATE_DIRS = ( +#TEMPLATE_DIRS = ( # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. - join(PROJDIR, '../tbc/templates'), - join(PROJDIR, '../tbc/static/uploads'), - join(PROJDIR, '../comments/templates'), - LOCAL_template_dirs, -) +# join(PROJDIR, '../tbc/templates'), +# join(PROJDIR, '../tbc/static/uploads'), +# join(PROJDIR, '../comments/templates'), +# LOCAL_template_dirs, +#) INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', @@ -138,13 +138,40 @@ INSTALLED_APPS = ( # 'django.contrib.admindocs', 'tbc', 'comments', - 'south', + #'south', 'commentingapp', 'tbc_error_page', 'taggit', 'taggit_templatetags2', ) +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [ + 'join(PROJDIR, "../tbc/templates")', + 'join(PROJDIR, "../tbc/static/uploads")', + 'join(PROJDIR, "../comments/templates")', + 'LOCAL_template_dirs', +], + #'APP_DIRS': True, + + 'OPTIONS': { + 'debug': DEBUG, + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + 'loaders': [ + 'django.template.loaders.filesystem.Loader', + 'django.template.loaders.app_directories.Loader', + +], + }, + }, +] SESSION_SERIALIZER = 'django.contrib.sessions.serializers.JSONSerializer' |