aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/panels/__init__.py
diff options
context:
space:
mode:
authorRob Hudson2008-08-27 23:57:17 -0700
committerRob Hudson2008-08-27 23:57:17 -0700
commitab06fbe6bf60be18a740547db957b5c44ae6b786 (patch)
tree0c424715d0b8d5f4abb1ffe3214adf599ff09f08 /debug_toolbar/panels/__init__.py
downloaddjango-debug-toolbar-ab06fbe6bf60be18a740547db957b5c44ae6b786.tar.bz2
Initial commit of basic working Debug Toolbar (that needs a lot of CSS and JS love)
Diffstat (limited to 'debug_toolbar/panels/__init__.py')
-rw-r--r--debug_toolbar/panels/__init__.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/debug_toolbar/panels/__init__.py b/debug_toolbar/panels/__init__.py
new file mode 100644
index 0000000..2454c56
--- /dev/null
+++ b/debug_toolbar/panels/__init__.py
@@ -0,0 +1,14 @@
+"""Base DebugPanel class"""
+
+class DebugPanel(object):
+ """
+ Base class for debug panels.
+ """
+ def title(self):
+ raise NotImplementedError
+
+ def url(self):
+ raise NotImplementedError
+
+ def content(self):
+ raise NotImplementedError