@@ -69,19 +69,21 @@ If you use the `DEBUG_TOOLBAR_PANELS` to custom order your panels:
69
69
70
70
``` python
71
71
DEBUG_TOOLBAR_PANELS = [
72
- ' debug_toolbar.panels.versions.VersionsPanel' ,
73
- ' debug_toolbar.panels.timer.TimerPanel' ,
74
- ' debug_toolbar.panels.settings.SettingsPanel' ,
75
- ' debug_toolbar.panels.headers.HeadersPanel' ,
76
- ' debug_toolbar.panels.request.RequestPanel' ,
77
- ' debug_toolbar.panels.sql.SQLPanel' ,
78
- ' debug_toolbar.panels.staticfiles.StaticFilesPanel' ,
79
- ' debug_toolbar.panels.templates.TemplatesPanel' ,
80
- ' debug_toolbar.panels.cache.CachePanel' ,
81
- ' debug_toolbar.panels.signals.SignalsPanel' ,
82
- ' debug_toolbar.panels.logging.LoggingPanel' ,
83
- ' debug_toolbar.panels.redirects.RedirectsPanel' ,
84
- ' mail_panel.panels.MailToolbarPanel' ,
72
+ " debug_toolbar.panels.history.HistoryPanel" ,
73
+ " debug_toolbar.panels.versions.VersionsPanel" ,
74
+ " debug_toolbar.panels.timer.TimerPanel" ,
75
+ " debug_toolbar.panels.settings.SettingsPanel" ,
76
+ " debug_toolbar.panels.headers.HeadersPanel" ,
77
+ " debug_toolbar.panels.request.RequestPanel" ,
78
+ " debug_toolbar.panels.sql.SQLPanel" ,
79
+ " debug_toolbar.panels.staticfiles.StaticFilesPanel" ,
80
+ " debug_toolbar.panels.templates.TemplatesPanel" ,
81
+ " debug_toolbar.panels.cache.CachePanel" ,
82
+ " debug_toolbar.panels.signals.SignalsPanel" ,
83
+ " debug_toolbar.panels.logging.LoggingPanel" ,
84
+ " debug_toolbar.panels.redirects.RedirectsPanel" ,
85
+ " debug_toolbar.panels.profiling.ProfilingPanel" ,
86
+ " mail_panel.panels.MailToolbarPanel" , # reposition to desired location
85
87
]
86
88
```
87
89
0 commit comments