Display debug toolbar.

This commit is contained in:
Drew Larson
2016-04-03 19:38:12 -06:00
parent 8c4e533232
commit b19c2f7073
@@ -45,3 +45,12 @@ LOGGING = {
}
},
}
INSTALLED_APPS += [
'debug_toolbar'
]
# Don't worry about IP addresses, just show the toolbar.
DEBUG_TOOLBAR_CONFIG = {
'SHOW_TOOLBAR_CALLBACK': lambda *args: True
}