|
@@ -200,3 +200,20 @@ MISAGO_ADMIN_SESSION_EXPIRATION = 60
|
|
|
|
|
|
# Default forms templates
|
|
|
CRISPY_TEMPLATE_PACK = 'bootstrap3'
|
|
|
+
|
|
|
+
|
|
|
+# Register Misago debug panels
|
|
|
+DEBUG_TOOLBAR_PANELS = (
|
|
|
+ 'debug_toolbar.panels.versions.VersionsPanel',
|
|
|
+ 'debug_toolbar.panels.timer.TimerPanel',
|
|
|
+ 'debug_toolbar.panels.settings.SettingsPanel',
|
|
|
+ 'debug_toolbar.panels.headers.HeadersPanel',
|
|
|
+ 'debug_toolbar.panels.request.RequestPanel',
|
|
|
+ 'debug_toolbar.panels.sql.SQLPanel',
|
|
|
+ 'misago.acl.panels.MisagoACLPanel',
|
|
|
+ 'debug_toolbar.panels.staticfiles.StaticFilesPanel',
|
|
|
+ 'debug_toolbar.panels.templates.TemplatesPanel',
|
|
|
+ 'debug_toolbar.panels.cache.CachePanel',
|
|
|
+ 'debug_toolbar.panels.signals.SignalsPanel',
|
|
|
+ 'debug_toolbar.panels.logging.LoggingPanel',
|
|
|
+)
|