Turn off Redirect Intercept on Django Debug Toolbar

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,
}

你可能感兴趣的:(django)