diff options
Diffstat (limited to 'debug_toolbar/templates')
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/panels/sql.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql.html b/debug_toolbar/templates/debug_toolbar/panels/sql.html index 3d6a966..046be7f 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql.html @@ -1,3 +1,4 @@ +<h3>SQL Queries</h3> <table> <thead> <tr> @@ -9,7 +10,7 @@ {% for query in queries %} <tr class="{% cycle 'row1' 'row2' %}"> <td>{{ query.time|floatformat:"4" }}</td> - <td>{{ query.sql|escape }}</td> + <td><pre>{{ query.sql|escape }}</pre></td> </tr> {% endfor %} </tbody> |
