diff options
Diffstat (limited to 'template/en/default/search')
-rw-r--r-- | template/en/default/search/boolean-charts.html.tmpl | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/template/en/default/search/boolean-charts.html.tmpl b/template/en/default/search/boolean-charts.html.tmpl index ba88b67b4..6887321f4 100644 --- a/template/en/default/search/boolean-charts.html.tmpl +++ b/template/en/default/search/boolean-charts.html.tmpl @@ -57,7 +57,16 @@ [% FOREACH chart = default.charts %] [% chartnum = loop.count - 1 %] <table> - [% FOREACH row = chart %] + <tr> + <input type="checkbox" id="negate[% chartnum FILTER html %]" + name="negate[% chartnum FILTER html %]" value="1" + [% "checked" IF chart.negate %] + > + <label for="negate[% chartnum FILTER html %]"> + Not (negate this whole chart) + </label> + </tr> + [% FOREACH row = chart.rows %] [% rownum = loop.count - 1 %] <tr> [% FOREACH col = row %] |