diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-03-07 23:47:36 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-03-07 23:49:02 +0100 |
commit | 9c26c01867ca3e2af1e70c051140eea59c68c500 (patch) | |
tree | 5b7b8a9e3f953a650ef1c3f07cabc4e71d750e42 /template/en | |
parent | 91248ef8f435814392896e247c45e09119ec6729 (diff) | |
download | bugzilla-9c26c01867ca3e2af1e70c051140eea59c68c500.tar.gz bugzilla-9c26c01867ca3e2af1e70c051140eea59c68c500.tar.xz |
Bug 1307485 - Add code to run a subset of buglist.cgi search queries against the ES backend
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/list/list.html.tmpl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl index 5e154f5df..051382a21 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -317,5 +317,13 @@ [% ELSE %] [% bugs.size %] [%+ terms.bugs %] found. [% END %] + [% IF elastic %] + <br> + ElasticSearch took [% elastic_query_time FILTER html %] seconds. + <a href="buglist.cgi?[% urlquerypart FILTER html %]&elastic=0">Try without ElasticSearch</a> + [% ELSIF was_elastic %] + <br> + Search took [% query_time FILTER html %] seconds. + [% END %] </span> [% END %] |