Question : are there learning activities for django-debug-toolbar
Answered by : ruperto2770
# If django-debug-toolbar does not work, add this to settings.py
def show_toolbar(request): return True
SHOW_TOOLBAR_CALLBACK = show_toolbar
#Also set INTERNAL_IPS e.g.
INTERNAL_IPS = ['127.0.0.1']
Source : | Last Update : Wed, 24 Nov 21