diff options
author | kinitrupti | 2016-10-24 12:32:11 +0530 |
---|---|---|
committer | kinitrupti | 2016-10-24 12:32:11 +0530 |
commit | eb3321f80def84e84329f213e21ef5ac94d4ccd6 (patch) | |
tree | 4c26ad501f9387e3d16c389603ae1432bd2c64fd /PythonTBC/settings.py | |
parent | 6da84d8c334e16ebea6597d8b83d51552935ed00 (diff) | |
download | Python-TBC-Interface-eb3321f80def84e84329f213e21ef5ac94d4ccd6.tar.gz Python-TBC-Interface-eb3321f80def84e84329f213e21ef5ac94d4ccd6.tar.bz2 Python-TBC-Interface-eb3321f80def84e84329f213e21ef5ac94d4ccd6.zip |
upgraded to python3
Diffstat (limited to 'PythonTBC/settings.py')
-rw-r--r-- | PythonTBC/settings.py | 55 |
1 files changed, 13 insertions, 42 deletions
diff --git a/PythonTBC/settings.py b/PythonTBC/settings.py index e73bc25..46131a9 100644 --- a/PythonTBC/settings.py +++ b/PythonTBC/settings.py @@ -1,10 +1,10 @@ # Django settings for PythonTBC project. from os.path import * -from local 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', -# 'django.template.loaders.eggs.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', @@ -145,35 +145,6 @@ INSTALLED_APPS = ( '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' # A sample logging configuration. The only tangible logging |