diff options
author | gerv%gerv.net <> | 2003-12-08 07:41:53 +0100 |
---|---|---|
committer | gerv%gerv.net <> | 2003-12-08 07:41:53 +0100 |
commit | 867aef719852c2a5689512d24ba4ae0b7a9942e7 (patch) | |
tree | e4183eacc568a0340a7ef512154c7fa7abb95a23 /template/en/default/search | |
parent | eef0d2856605458a57b08d2d50981df10fb6a3a6 (diff) | |
download | bugzilla-867aef719852c2a5689512d24ba4ae0b7a9942e7.tar.gz bugzilla-867aef719852c2a5689512d24ba4ae0b7a9942e7.tar.xz |
Bug 218568 - Clean up charting UI. Having played with it for a bit, it needed work. Patch by gerv; r=kiko, a=justdave.
Diffstat (limited to 'template/en/default/search')
-rw-r--r-- | template/en/default/search/form.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/search/search-create-series.html.tmpl | 29 |
2 files changed, 10 insertions, 23 deletions
diff --git a/template/en/default/search/form.html.tmpl b/template/en/default/search/form.html.tmpl index c33b2f0bd..b01765470 100644 --- a/template/en/default/search/form.html.tmpl +++ b/template/en/default/search/form.html.tmpl @@ -352,7 +352,9 @@ function selectProduct(f) { value="[% default.short_desc.0 FILTER html %]"> </td> <td> - <input type="submit" value="[% button_name FILTER html %]"> + [% IF button_name %] + <input type="submit" value="[% button_name FILTER html %]"> + [% END %] </td> </tr> diff --git a/template/en/default/search/search-create-series.html.tmpl b/template/en/default/search/search-create-series.html.tmpl index 83aa5a912..a1a1ec312 100644 --- a/template/en/default/search/search-create-series.html.tmpl +++ b/template/en/default/search/search-create-series.html.tmpl @@ -32,34 +32,19 @@ onload = "selectProduct(document.forms['chartform']);" %] -[% button_name = "I'm Feeling Buggy" %] - <form method="get" action="chart.cgi" name="chartform"> [% PROCESS search/form.html.tmpl %] -<table> - <tr> - <td> - <input type="radio" id="action-search" - name="action" value="search" checked="checked"> - <label for="action-search">Run this search</label></td> - </tr> - - <tr> - <td> - <input type="radio" id="action-create" name="action" value="create"> - <label for="action-create"> - Start recording [% terms.bug %] count data for this search, as follows: - </label> - <br> +<p> + <input type="submit" name="action-search" value="Run Search"> + to see which bugs would be included in this series. +</p> + +<h3>Data Set Parameters</h3> - [% INCLUDE reports/series.html.tmpl %] +[% INCLUDE reports/series.html.tmpl %] - </td> - </tr> -</table> - <hr> [% PROCESS "search/boolean-charts.html.tmpl" %] |