aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Hudson2010-10-18 07:20:43 -0700
committerRob Hudson2010-10-18 07:20:43 -0700
commitaf205241fe51b2ebb5ec9789ac5e1074cd005333 (patch)
tree717f5e3c6cae651f7e111b8da543b8410269fd2d
parent1a619cd8818bf5a813a5f008dadaecd781e364ea (diff)
downloaddjango-debug-toolbar-af205241fe51b2ebb5ec9789ac5e1074cd005333.tar.bz2
Added CSS classes to the SQL panel tables.
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/sql_explain.html2
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/sql_profile.html2
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/sql_select.html2
3 files changed, 3 insertions, 3 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html b/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html
index a995b92..abd4a20 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html
@@ -11,7 +11,7 @@
<dt>{% trans "Time" %}</dt>
<dd>{{ duration }} ms</dd>
</dl>
- <table>
+ <table class="djSqlExplain">
<thead>
<tr>
{% for h in headers %}
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html b/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html
index 7919ee5..5c5724e 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html
@@ -12,7 +12,7 @@
<dt>{% trans "Time" %}</dt>
<dd>{{ duration }} ms</dd>
</dl>
- <table>
+ <table class="djSqlProfile">
<thead>
<tr>
{% for h in headers %}
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql_select.html b/debug_toolbar/templates/debug_toolbar/panels/sql_select.html
index 89804fa..db5199c 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/sql_select.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/sql_select.html
@@ -12,7 +12,7 @@
<dd>{{ duration }} ms</dd>
</dl>
{% if result %}
- <table>
+ <table class="djSqlSelect">
<thead>
<tr>
{% for h in headers %}