diff options
| author | Rob Hudson | 2008-09-20 17:00:19 -0700 | 
|---|---|---|
| committer | Rob Hudson | 2008-09-20 17:00:19 -0700 | 
| commit | f40ad85645f27fc4b80683acdbefd01a1da51afd (patch) | |
| tree | 8c8702d6f68046a5b59fceba8af1b9e750b372d3 /debug_toolbar/templates | |
| parent | 7677c7e39c56a040dfb523169fcaa7d58645d2b8 (diff) | |
| download | django-debug-toolbar-f40ad85645f27fc4b80683acdbefd01a1da51afd.tar.bz2 | |
Updating SQL panel to use Pygments for SQL highlighting if it's available,
moving the EXPLAIN link to the left to avoid scrolling.
I have a feeling that the SQL panel could use a serious security review since
we're passing SQL in via GET which is, I'm sure, a big no-no.
Diffstat (limited to 'debug_toolbar/templates')
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/panels/sql.html | 4 | ||||
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/panels/sql_explain.html | 2 | 
2 files changed, 3 insertions, 3 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql.html b/debug_toolbar/templates/debug_toolbar/panels/sql.html index bd167bc..4663047 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql.html @@ -3,16 +3,16 @@  	<thead>  		<tr>  			<th>Time (ms)</th> -			<th>Query</th>  			<th>Action</th> +			<th>Query</th>  		</tr>  	</thead>  	<tbody>  		{% for query in queries %}  			<tr class="{% cycle 'row1' 'row2' %}">  				<td>{{ query.time|floatformat:"4" }}</td> -				<td><pre>{{ query.sql|wordwrap:80|escape }}</pre></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> +				<td>{{ query.sql|safe }}</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 8219205..d2fd567 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html @@ -2,7 +2,7 @@  <h3>SQL Explained</h3>  <dl>  	<dt>Executed SQL</dt> -	<dd><pre>{{ sql|wordwrap:80 }}</pre></dd> +	<dd><pre>{{ sql|safe }}</pre></dd>  	<dt>Time</dt>  	<dd>{{ time }} ms</dd>  </dl>  | 
