diff options
| author | Idan Gazit | 2009-08-12 06:37:43 +0300 |
|---|---|---|
| committer | Idan Gazit | 2009-08-12 06:37:43 +0300 |
| commit | e38c45515ca458709b0a7e5bc75e3f640950dbb3 (patch) | |
| tree | e9d38b1d246ae32d95c50fdd577628fc718a2b53 /debug_toolbar/templates | |
| parent | 28ec3f9aa3674284eb060e91760fbc6e98076f3a (diff) | |
| download | django-debug-toolbar-e38c45515ca458709b0a7e5bc75e3f640950dbb3.tar.bz2 | |
Cleaned up the panels
Diffstat (limited to 'debug_toolbar/templates')
10 files changed, 8 insertions, 14 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/base.html b/debug_toolbar/templates/debug_toolbar/base.html index ab591dd..5f4b7e7 100644 --- a/debug_toolbar/templates/debug_toolbar/base.html +++ b/debug_toolbar/templates/debug_toolbar/base.html @@ -52,9 +52,11 @@ {% for panel in panels %} {% if panel.has_content %} <div id="{{ panel.dom_id }}" class="panelContent"> - <h3>{{ panel.title|safe }}</h3> <a href="" class="close">Close</a> - {{ panel.content|safe }} + <h3>{{ panel.title|safe }}</h3> + <div class="panelScroll"> + {{ panel.content|safe }} + </div> </div> {% endif %} {% endfor %} diff --git a/debug_toolbar/templates/debug_toolbar/panels/cache.html b/debug_toolbar/templates/debug_toolbar/panels/cache.html index 3142783..d102cdd 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/cache.html +++ b/debug_toolbar/templates/debug_toolbar/panels/cache.html @@ -1,4 +1,3 @@ -<h3>Cache Usage</h3> <table> <colgroup> <col width="12%"/> diff --git a/debug_toolbar/templates/debug_toolbar/panels/headers.html b/debug_toolbar/templates/debug_toolbar/panels/headers.html index 005ffe6..b14a50c 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/headers.html +++ b/debug_toolbar/templates/debug_toolbar/panels/headers.html @@ -1,4 +1,3 @@ -<h3>HTTP Headers</h3> <table> <thead> <tr> diff --git a/debug_toolbar/templates/debug_toolbar/panels/logger.html b/debug_toolbar/templates/debug_toolbar/panels/logger.html index 2117529..e6ce945 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/logger.html +++ b/debug_toolbar/templates/debug_toolbar/panels/logger.html @@ -1,4 +1,3 @@ -<h3>Log Messages</h3> {% if records %} <table> <thead> diff --git a/debug_toolbar/templates/debug_toolbar/panels/request_vars.html b/debug_toolbar/templates/debug_toolbar/panels/request_vars.html index b7d53ee..a65d0a5 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/request_vars.html +++ b/debug_toolbar/templates/debug_toolbar/panels/request_vars.html @@ -1,4 +1,4 @@ -<h3>COOKIES Variables</h3> +<h4>COOKIES Variables</h4> {% if cookies %} <table> <colgroup> @@ -23,7 +23,7 @@ {% else %} <p>None</p> {% endif %} -<h3>SESSION Variables</h3> +<h4>SESSION Variables</h4> {% if session %} <table> <colgroup> @@ -48,7 +48,7 @@ {% else %} <p>None</p> {% endif %} -<h3>GET Variables</h3> +<h4>GET Variables</h4> {% if get %} <table> <thead> @@ -69,7 +69,7 @@ {% else %} <p>None</p> {% endif %} -<h3>POST Variables</h3> +<h4>POST Variables</h4> {% if post %} <table> <thead> diff --git a/debug_toolbar/templates/debug_toolbar/panels/settings_vars.html b/debug_toolbar/templates/debug_toolbar/panels/settings_vars.html index 93f0b34..c53ee4d 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/settings_vars.html +++ b/debug_toolbar/templates/debug_toolbar/panels/settings_vars.html @@ -1,4 +1,3 @@ -<h3>Settings from <code>{{ settings.SETTINGS_MODULE }}</code></h3> <table> <thead> <tr> diff --git a/debug_toolbar/templates/debug_toolbar/panels/signals.html b/debug_toolbar/templates/debug_toolbar/panels/signals.html index e9a189e..7875700 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/signals.html +++ b/debug_toolbar/templates/debug_toolbar/panels/signals.html @@ -1,4 +1,3 @@ -<h3>Signals</h3> <table> <thead> <tr> diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql.html b/debug_toolbar/templates/debug_toolbar/panels/sql.html index f05ea97..717d54d 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql.html @@ -1,4 +1,3 @@ -<h3>SQL Queries</h3> <table> <thead> <tr> diff --git a/debug_toolbar/templates/debug_toolbar/panels/templates.html b/debug_toolbar/templates/debug_toolbar/panels/templates.html index 6c918b1..78519c9 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/templates.html +++ b/debug_toolbar/templates/debug_toolbar/panels/templates.html @@ -1,4 +1,3 @@ -<h3>Template path{{ template_dirs|length|pluralize }}:</h3> {% if template_dirs %} <ol> {% for template in template_dirs %} diff --git a/debug_toolbar/templates/debug_toolbar/panels/timer.html b/debug_toolbar/templates/debug_toolbar/panels/timer.html index 831ff86..39e9eb1 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/timer.html +++ b/debug_toolbar/templates/debug_toolbar/panels/timer.html @@ -1,4 +1,3 @@ -<h3>Resource Usage</h3> <table> <colgroup> <col style="width:20%"/> |
