aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/panels/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'debug_toolbar/panels/__init__.py')
-rw-r--r--debug_toolbar/panels/__init__.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/debug_toolbar/panels/__init__.py b/debug_toolbar/panels/__init__.py
index 54b3318..459e550 100644
--- a/debug_toolbar/panels/__init__.py
+++ b/debug_toolbar/panels/__init__.py
@@ -15,8 +15,13 @@ class DebugPanel(object):
return 'djDebug%sPanel' % (self.name.replace(' ', ''))
def title(self):
+ """Title showing in toolbar"""
raise NotImplementedError
+ def subtitle(self):
+ """Subtitle showing until title in toolbar"""
+ return ''
+
def url(self):
raise NotImplementedError