Told DDT to now intercept redirect on development

This commit is contained in:
Felipe Martín 2013-05-30 11:50:12 +02:00
parent 718c3729f6
commit 503a0f2cd6
1 changed files with 4 additions and 0 deletions

View File

@ -25,3 +25,7 @@ INSTALLED_APPS = INSTALLED_APPS + ('debug_toolbar', )
MIDDLEWARE_CLASSES = MIDDLEWARE_CLASSES + ('debug_toolbar.middleware.DebugToolbarMiddleware',)
INTERNAL_IPS = ('127.0.0.1',)
DEBUG_TOOLBAR_CONFIG = {
'INTERCEPT_REDIRECTS': False
}