diff options
| author | Rob Hudson | 2008-09-20 13:44:09 -0700 |
|---|---|---|
| committer | Rob Hudson | 2008-09-20 13:44:09 -0700 |
| commit | 6bd25be6b8345f0a08c99acc35877faafd2a08ee (patch) | |
| tree | 4171f572ff4cf4bdfe4da65d466711948ade9e1d /debug_toolbar/templates | |
| parent | 0c2c0ab82d6f848b6083a176f301d72d8bb798d8 (diff) | |
| download | django-debug-toolbar-6bd25be6b8345f0a08c99acc35877faafd2a08ee.tar.bz2 | |
partly done with ajax support and js
Diffstat (limited to 'debug_toolbar/templates')
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/base.html | 5 | ||||
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/panels/sql.html | 2 | ||||
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/panels/sql_explain.html | 1 |
3 files changed, 4 insertions, 4 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/base.html b/debug_toolbar/templates/debug_toolbar/base.html index 4cc028c..e654219 100644 --- a/debug_toolbar/templates/debug_toolbar/base.html +++ b/debug_toolbar/templates/debug_toolbar/base.html @@ -21,11 +21,10 @@ {% for panel in panels %} {% if panel.has_content %} <div id="{{ panel.dom_id }}" class="panelContent"> - <div class="title"> - <a href="" class="close">Close</a> - </div> + <a href="" class="close">Close</a> {{ panel.content|safe }} </div> {% endif %} {% endfor %} + <div id="djDebugWindow" class="panelContent"></div> </div> diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql.html b/debug_toolbar/templates/debug_toolbar/panels/sql.html index 246fa74..bd167bc 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql.html @@ -12,7 +12,7 @@ <tr class="{% cycle 'row1' 'row2' %}"> <td>{{ query.time|floatformat:"4" }}</td> <td><pre>{{ query.sql|wordwrap:80|escape }}</pre></td> - <td><a href="/__debug__/sql_explain/?sql={{ query.raw_sql|urlencode }}¶ms={{ query.params|urlencode }}&time={{ query.time|floatformat:"4"|urlencode }}">EXPLAIN</a></td> + <td><a class="remoteCall" href="/__debug__/sql_explain/?sql={{ query.raw_sql|urlencode }}¶ms={{ query.params|urlencode }}&time={{ query.time|floatformat:"4"|urlencode }}">EXPLAIN</a></td> </tr> {% endfor %} </tbody> diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html b/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html index 757d43f..8219205 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html @@ -1,3 +1,4 @@ +<a class="back" href="">« Back</a> <h3>SQL Explained</h3> <dl> <dt>Executed SQL</dt> |
