aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/templates
diff options
context:
space:
mode:
authorBryan Veloso2008-09-22 18:19:43 -0700
committerBryan Veloso2008-09-22 18:19:43 -0700
commit0f7afe0ff0c722b86cf90085ae72e7d397403500 (patch)
tree7913f88f671e6b6d878aacecd6829aa54e25a963 /debug_toolbar/templates
parent276e1c284aa976f69c68230591b9f7fd1fbbc676 (diff)
parent5a711759e75bfef4788498d9cfaa9fe019bcd15d (diff)
downloaddjango-debug-toolbar-0f7afe0ff0c722b86cf90085ae72e7d397403500.tar.bz2
Merge branch 'master' of git@github.com:revyver/django-debug-toolbar
Diffstat (limited to 'debug_toolbar/templates')
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/sql.html4
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/sql_explain.html25
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/templates.html2
3 files changed, 29 insertions, 2 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql.html b/debug_toolbar/templates/debug_toolbar/panels/sql.html
index 046be7f..246fa74 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/sql.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/sql.html
@@ -4,13 +4,15 @@
<tr>
<th>Time&nbsp;(ms)</th>
<th>Query</th>
+ <th>Action</th>
</tr>
</thead>
<tbody>
{% for query in queries %}
<tr class="{% cycle 'row1' 'row2' %}">
<td>{{ query.time|floatformat:"4" }}</td>
- <td><pre>{{ query.sql|escape }}</pre></td>
+ <td><pre>{{ query.sql|wordwrap:80|escape }}</pre></td>
+ <td><a href="/__debug__/sql_explain/?sql={{ query.raw_sql|urlencode }}&params={{ 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
new file mode 100644
index 0000000..757d43f
--- /dev/null
+++ b/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html
@@ -0,0 +1,25 @@
+<h3>SQL Explained</h3>
+<dl>
+ <dt>Executed SQL</dt>
+ <dd><pre>{{ sql|wordwrap:80 }}</pre></dd>
+ <dt>Time</dt>
+ <dd>{{ time }} ms</dd>
+</dl>
+<table>
+ <thead>
+ <tr>
+ {% for h in headers %}
+ <th>{{ h|upper }}</th>
+ {% endfor %}
+ </tr>
+ </thead>
+ <tbody>
+ {% for row in result %}
+ <tr class="{% cycle 'row1' 'row2' %}">
+ {% for column in row %}
+ <td>{{ column|escape }}</td>
+ {% endfor %}
+ </tr>
+ {% endfor %}
+ </tbody>
+</table>
diff --git a/debug_toolbar/templates/debug_toolbar/panels/templates.html b/debug_toolbar/templates/debug_toolbar/panels/templates.html
index ee93708..575d507 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/templates.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/templates.html
@@ -22,4 +22,4 @@
</dl>
{% else %}
None
-{% endif %} \ No newline at end of file
+{% endif %}