1
0
mirror of https://github.com/fspc/workstand.git synced 2025-02-23 09:13:23 -05:00

Display debug toolbar.

This commit is contained in:
Drew Larson 2016-04-03 19:38:12 -06:00
parent 8c4e533232
commit b19c2f7073

View File

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