|
@@ -118,6 +118,7 @@ TEMPLATE_LOADERS = (
|
|
)
|
|
)
|
|
|
|
|
|
MIDDLEWARE_CLASSES = (
|
|
MIDDLEWARE_CLASSES = (
|
|
|
|
+ 'debug_toolbar.middleware.DebugToolbarMiddleware',
|
|
'django.middleware.common.CommonMiddleware',
|
|
'django.middleware.common.CommonMiddleware',
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
@@ -127,6 +128,14 @@ MIDDLEWARE_CLASSES = (
|
|
# 'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
|
# 'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
|
)
|
|
)
|
|
|
|
|
|
|
|
+# Do not load jQuery from crappy CDN
|
|
|
|
+DEBUG_TOOLBAR_CONFIG = {
|
|
|
|
+ 'JQUERY_URL': '/static/js/vendor/jquery.js'
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+# Used for debug toolbar
|
|
|
|
+INTERNAL_IPS = ['127.0.0.1', '::1']
|
|
|
|
+
|
|
ROOT_URLCONF = 'coin.urls'
|
|
ROOT_URLCONF = 'coin.urls'
|
|
|
|
|
|
# Python dotted path to the WSGI application used by Django's runserver.
|
|
# Python dotted path to the WSGI application used by Django's runserver.
|
|
@@ -140,6 +149,7 @@ TEMPLATE_DIRS = (
|
|
EXTRA_TEMPLATE_DIRS = tuple()
|
|
EXTRA_TEMPLATE_DIRS = tuple()
|
|
|
|
|
|
INSTALLED_APPS = (
|
|
INSTALLED_APPS = (
|
|
|
|
+ 'debug_toolbar', # always installed, but enabled only if DEBUG=True
|
|
'django.contrib.auth',
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'django.contrib.sessions',
|