From 07407876a608a4d573dbd6ee4cee2d3798f752c5 Mon Sep 17 00:00:00 2001 From: Rob Hudson Date: Tue, 7 Oct 2008 23:09:29 -0700 Subject: Fix inconsistent SQL timings. All SQL timings are milliseconds now. --- debug_toolbar/templates/debug_toolbar/panels/sql.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'debug_toolbar/templates') diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql.html b/debug_toolbar/templates/debug_toolbar/panels/sql.html index d35d83e..f6ff64f 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql.html @@ -10,12 +10,12 @@ {% for query in queries %} - {{ query.time|floatformat:"4" }} + {{ query.time|floatformat:"2" }} {% if query.params %} - SELECT - EXPLAIN - PROFILE + SELECT + EXPLAIN + PROFILE {% endif %} {{ query.sql|safe }} -- cgit v1.2.3