diff options
| author | Alex Gaynor | 2009-09-10 11:14:27 -0700 |
|---|---|---|
| committer | Alex Gaynor | 2009-09-10 11:14:27 -0700 |
| commit | d6190014abd950f032755fde33ce32c30fc0e754 (patch) | |
| tree | f070f1275da92ea9efc545ef049c798499286412 /debug_toolbar/panels/__init__.py | |
| parent | 89a0b38316e1822bf22a4f013a6bb12f9db585b8 (diff) | |
| parent | 608e3ce3e79e3c2d073cf72d1071b71b324485ee (diff) | |
| download | django-debug-toolbar-d6190014abd950f032755fde33ce32c30fc0e754.tar.bz2 | |
handle merge conflicts
Diffstat (limited to 'debug_toolbar/panels/__init__.py')
| -rw-r--r-- | debug_toolbar/panels/__init__.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/debug_toolbar/panels/__init__.py b/debug_toolbar/panels/__init__.py index 54b3318..cf65aa8 100644 --- a/debug_toolbar/panels/__init__.py +++ b/debug_toolbar/panels/__init__.py @@ -14,7 +14,16 @@ class DebugPanel(object): def dom_id(self): return 'djDebug%sPanel' % (self.name.replace(' ', '')) + def nav_title(self): + """Title showing in toolbar""" + raise NotImplementedError + + def nav_subtitle(self): + """Subtitle showing until title in toolbar""" + return '' + def title(self): + """Title showing in panel""" raise NotImplementedError def url(self): |
