None

Turn off Redirect Intercept on Django Debug Toolbar

November 21, 2009

To turn off the intercepting of each redirect when using the Django Debug Toolbar, add the following to settings.py:

DEBUG_TOOLBAR_CONFIG = {
    'INTERCEPT_REDIRECTS': False,
}