aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/templates
diff options
context:
space:
mode:
authorRob Hudson2008-09-23 19:55:18 -0700
committerRob Hudson2008-09-23 19:55:18 -0700
commit7ea7e780b775680be3050a8d6eb71f63b5a1fd34 (patch)
treef19afc309117cbcdce467b762beaaddb131ca6f7 /debug_toolbar/templates
parent777e70fde5bb78e1d9e9eaf881caa801690cacc6 (diff)
downloaddjango-debug-toolbar-7ea7e780b775680be3050a8d6eb71f63b5a1fd34.tar.bz2
Updating pygments styles to better match new toolbar styles.
Diffstat (limited to 'debug_toolbar/templates')
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/sql.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql.html b/debug_toolbar/templates/debug_toolbar/panels/sql.html
index 4663047..0a8a6e0 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/sql.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/sql.html
@@ -12,8 +12,8 @@
<tr class="{% cycle 'row1' 'row2' %}">
<td>{{ query.time|floatformat:"4" }}</td>
<td><a class="remoteCall" href="/__debug__/sql_explain/?sql={{ query.raw_sql|urlencode }}&params={{ query.params|urlencode }}&time={{ query.time|floatformat:"4"|urlencode }}">EXPLAIN</a></td>
- <td>{{ query.sql|safe }}</td>
+ <td class="syntax">{{ query.sql|safe }}</td>
</tr>
{% endfor %}
</tbody>
-</table> \ No newline at end of file
+</table>