From d4d51245366b87f4227d2d1c125e0a027692f256 Mon Sep 17 00:00:00 2001 From: Anton de Winter Date: Sun, 8 Jul 2012 13:17:59 -0300 Subject: Make formatting consistent and have point #4 in installation stand out more. (Easy to miss if you're in a hurry) --- README.rst | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 7c54f40..44279ce 100644 --- a/README.rst +++ b/README.rst @@ -32,9 +32,9 @@ Installation #. Add the `debug_toolbar` directory to your Python path. -#. Add the following middleware to your project's `settings.py` file: +#. Add the following middleware to your project's `settings.py` file:: - ``'debug_toolbar.middleware.DebugToolbarMiddleware',`` + 'debug_toolbar.middleware.DebugToolbarMiddleware', Tying into middleware allows each panel to be instantiated on request and rendering to happen on response. @@ -53,7 +53,7 @@ Installation toolbar will not show up on flatpages. #. Make sure your IP is listed in the `INTERNAL_IPS` setting. If you are - working locally this will be: + working locally this will be:: INTERNAL_IPS = ('127.0.0.1',) @@ -62,8 +62,12 @@ Installation your own logic for displaying the toolbar. #. Add `debug_toolbar` to your `INSTALLED_APPS` setting so Django can find the - template files associated with the Debug Toolbar. + template files associated with the Debug Toolbar:: + INSTALLED_APPS = ( + ... + 'debug_toolbar', + ) Alternatively, add the path to the debug toolbar templates (``'path/to/debug_toolbar/templates'`` to your ``TEMPLATE_DIRS`` setting.) -- cgit v1.2.3