diff options
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 %} | 
