diff options
author | Byron Jones <bjones@mozilla.com> | 2012-03-22 07:18:18 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2012-03-22 07:18:18 +0100 |
commit | 399f0b45f6fb796941b92ed2899fcc17e3ab0ea9 (patch) | |
tree | edbcf9a735086d581897b7ac7a8d30f825e7bfe7 /template/en | |
parent | 8e28c08bc098913884b413e9989f3ec8a4a35bf9 (diff) | |
download | bugzilla-399f0b45f6fb796941b92ed2899fcc17e3ab0ea9.tar.gz bugzilla-399f0b45f6fb796941b92ed2899fcc17e3ab0ea9.tar.xz |
Bug 732440: add sql timings to buglist.cgi's debug output
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/list/list.html.tmpl | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl index ccf3427dd..a21117d34 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -59,10 +59,13 @@ </span> [% IF debug %] - <p class="bz_query">[% query FILTER html %]</p> - [% IF query_explain.defined %] - <pre class="bz_query_explain">[% query_explain FILTER html %]</pre> - [% END %] + <div class="bz_query_debug"> + <p>[% query FILTER html %]</p> + <p>Execution time: [% query_time FILTER html %] seconds</p> + [% IF query_explain.defined %] + <pre>[% query_explain FILTER html %]</pre> + [% END %] + </div> [% END %] [% IF user.settings.display_quips.value == 'on' %] |