diff options
| author | Rob Hudson | 2008-09-23 19:55:18 -0700 |
|---|---|---|
| committer | Rob Hudson | 2008-09-23 19:55:18 -0700 |
| commit | 7ea7e780b775680be3050a8d6eb71f63b5a1fd34 (patch) | |
| tree | f19afc309117cbcdce467b762beaaddb131ca6f7 /debug_toolbar/templates | |
| parent | 777e70fde5bb78e1d9e9eaf881caa801690cacc6 (diff) | |
| download | django-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.html | 4 |
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 }}¶ms={{ 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> |
