1. Download and install
The source is on GitHub.
https://github.com/django-debug-toolbar/django-debug-toolbar/
Source download can be directly executed Python setup.py install installation
2. Django Config 2.1 settings.py config file add app Debug_toolbar
2.2 Adding middleware
Debug_toolbar.middleware.DebugToolbarMiddleware
2.3 Configuring the Internal IP
Declare the variable in the settings.py file as follows
Internal_ips = (' 127.0.0.1 ',)
2.4 Panel Registration
Debug_toolbar_panels = (' Debug_toolbar.panels.version.VersionDebugPanel ', ' debug_ Toolbar.panels.timer.TimerDebugPanel ', ' debug_toolbar.panels.settings_vars. Settingsvarsdebugpanel ', ' debug_toolbar.panels.headers.HeaderDebugPanel ', ' debug_toolbar.panels.request_vars. Requestvarsdebugpanel ', ' debug_toolbar.panels.template.TemplateDebugPanel ', ' debug_ Toolbar.panels.sql.SQLDebugPanel ', ' debug_toolbar.panels.signals.SignalDebugPanel ', ' debug_ Toolbar.panels.logger.LoggingPanel ',)
The "Django Tools" Django_debug_toolbar use