diff options
| author | Rob Hudson | 2010-10-18 07:20:43 -0700 | 
|---|---|---|
| committer | Rob Hudson | 2010-10-18 07:20:43 -0700 | 
| commit | af205241fe51b2ebb5ec9789ac5e1074cd005333 (patch) | |
| tree | 717f5e3c6cae651f7e111b8da543b8410269fd2d | |
| parent | 1a619cd8818bf5a813a5f008dadaecd781e364ea (diff) | |
| download | django-debug-toolbar-af205241fe51b2ebb5ec9789ac5e1074cd005333.tar.bz2 | |
Added CSS classes to the SQL panel tables.
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 %} | 
