summaryrefslogtreecommitdiff
path: root/testapp/settings.py
diff options
context:
space:
mode:
authorhardythe12012-04-02 18:04:43 +0530
committerhardythe12012-04-02 18:04:43 +0530
commitc0fcc1181e209192f6d11f2ca521e55e33a4ead7 (patch)
tree576b100053a4ef35d4e686ce198f2882d98efbb2 /testapp/settings.py
parent64b38d3365f1d65132942fce6e29fed7da076bba (diff)
downloadonline_test-c0fcc1181e209192f6d11f2ca521e55e33a4ead7.tar.gz
online_test-c0fcc1181e209192f6d11f2ca521e55e33a4ead7.tar.bz2
online_test-c0fcc1181e209192f6d11f2ca521e55e33a4ead7.zip
Question Paper generator changes
Diffstat (limited to 'testapp/settings.py')
-rw-r--r--testapp/settings.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/testapp/settings.py b/testapp/settings.py
index 6edf08c..92a597b 100644
--- a/testapp/settings.py
+++ b/testapp/settings.py
@@ -123,6 +123,8 @@ MIDDLEWARE_CLASSES = (
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
+ 'debug_toolbar.middleware.DebugToolbarMiddleware',
+
)
ROOT_URLCONF = '%s.urls'%(basename(CURDIR))
@@ -149,6 +151,8 @@ INSTALLED_APPS = (
'south',
'exam',
'taggit_autocomplete_modified',
+ 'debug_toolbar',
+ 'django_extensions',
)
# A sample logging configuration. The only tangible logging
@@ -188,3 +192,6 @@ LOGGING = {
}
AUTH_PROFILE_MODULE = 'exam.Profile'
+
+INTERNAL_IPS = ('127.0.0.1',)
+