aboutsummaryrefslogtreecommitdiffstats
path: root/README.rst
diff options
context:
space:
mode:
authorRob Hudson2008-09-12 13:34:39 -0700
committerRob Hudson2008-09-12 13:34:39 -0700
commitec38c74d20606182d9b9462977e185f0c37e99b2 (patch)
tree8c16cbe575b123d7eda0ce60b4562524364e886f /README.rst
parent4056bf7fa4049190f103602d071be99a53846952 (diff)
downloaddjango-debug-toolbar-ec38c74d20606182d9b9462977e185f0c37e99b2.tar.bz2
Moving default list of panels into the loader to skip an install step. Panel
list can still be overridden with a setting if desired. Updated README as well.
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst17
1 files changed, 9 insertions, 8 deletions
diff --git a/README.rst b/README.rst
index a6f2d56..791fa79 100644
--- a/README.rst
+++ b/README.rst
@@ -41,10 +41,13 @@ Installation
INTERNAL_IPS = ('127.0.0.1',)
-#. Add a tuple called `DEBUG_TOOLBAR_PANELS` to your ``settings.py`` file that
- specifies the full Python path to the panel that you want included in the
- Toolbar. This setting looks very much like the `MIDDLEWARE_CLASSES` setting.
- For example::
+#. Add `debug_toolbar` to your `INSTALLED_APPS` setting so Django can find the
+ the template files associated with the Debug Toolbar.
+
+#. Optional: Add a tuple called `DEBUG_TOOLBAR_PANELS` to your ``settings.py``
+ file that specifies the full Python path to the panel that you want included
+ in the Toolbar. This setting looks very much like the `MIDDLEWARE_CLASSES`
+ setting. For example::
DEBUG_TOOLBAR_PANELS = (
'debug_toolbar.panels.version.VersionDebugPanel',
@@ -57,10 +60,8 @@ Installation
)
You can change the ordering of this tuple to customize the order of the
- panels you want to display.
-
-#. Add `debug_toolbar` to your `INSTALLED_APPS` setting so Django can find the
- the template files associated with the Debug Toolbar.
+ panels you want to display. And you can include panels that you have created
+ or that are specific to your project.
TODO
====