diff options
| -rw-r--r-- | README.rst | 11 | 
1 files changed, 9 insertions, 2 deletions
| @@ -13,6 +13,7 @@ Currently, the following panels have been written and are working:  - Django version  - SQL queries including time to execute  - Request timer +- Common HTTP headers  If you have ideas for other panels please let us know. @@ -37,6 +38,7 @@ Installation  	    'debug_toolbar.panels.version.VersionDebugPanel',  	    'debug_toolbar.panels.sql.SQLDebugPanel',  	    'debug_toolbar.panels.timer.TimerDebugPanel', +	    'debug_toolbar.panels.headers.HeaderDebugPanel',  	)     You can change the ordering of this tuple to customize the order of the @@ -45,11 +47,16 @@ Installation  #. Add `debug_toolbar` to your `INSTALLED_APPS` setting so Django can find the     the template files associated with the Debug Toolbar. +#. The UI effects of the Toolbar currently depend on jQuery to be already +   included in your templates.  So currently to test out the toolbar jQuery +   already needs to be loaded on the page.  We'll need a solution for this at +   some point. +  TODO  ====  - Add more panels  - Panel idea: Show some commonly used settings from settings.py  - Panel idea: Show GET and POST variables -- Panel idea: Show HTTP header information  - Panel idea: AJAX call to show cprofile data similar to the ?prof idea -- Get fancy with CSS and Javascript +- CSS Stylings +- Remove dependency on jQuery and come up with a general workable solution. | 
