diff options
author | rojanu <aliustek@gmail.com> | 2014-04-02 10:35:08 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-04-02 10:35:08 +0200 |
commit | b4aecfefc218d425c7c2b05d0878d4b062613a18 (patch) | |
tree | 436a2784b28faaecd14f1f9db26fb63821ffb9b6 /template/en/default/reports | |
parent | b6027058e4a8e06ffc252645e5e8b695b0aa2802 (diff) | |
download | bugzilla-b4aecfefc218d425c7c2b05d0878d4b062613a18.tar.gz bugzilla-b4aecfefc218d425c7c2b05d0878d4b062613a18.tar.xz |
Bug 539894: Use <optgroup/> to group products into classifications in the product drop-down on show_bug.cgi
r=glob, a=justdave
Diffstat (limited to 'template/en/default/reports')
-rw-r--r-- | template/en/default/reports/duplicates.html.tmpl | 12 | ||||
-rw-r--r-- | template/en/default/reports/old-charts.html.tmpl | 12 |
2 files changed, 11 insertions, 13 deletions
diff --git a/template/en/default/reports/duplicates.html.tmpl b/template/en/default/reports/duplicates.html.tmpl index 67d1f233e..0d47aae75 100644 --- a/template/en/default/reports/duplicates.html.tmpl +++ b/template/en/default/reports/duplicates.html.tmpl @@ -51,13 +51,11 @@ <tr> <td>Restrict to products:</td> <td> - <select name="product" size="5" multiple="multiple"> - [% FOREACH p = user.get_selectable_products %] - <option name="[% p.name FILTER html %]" - [% ' selected="selected"' IF product.contains(p.name) %] - >[% p.name FILTER html %]</option> - [% END %] - </select> + [% INCLUDE "global/product-select.html.tmpl" + id => "product" + name => "product" + multiple => 5 + %] </td> </tr> diff --git a/template/en/default/reports/old-charts.html.tmpl b/template/en/default/reports/old-charts.html.tmpl index b3ebe386d..acebca74d 100644 --- a/template/en/default/reports/old-charts.html.tmpl +++ b/template/en/default/reports/old-charts.html.tmpl @@ -7,7 +7,6 @@ #%] [%# INTERFACE: - # products: an array of product names the user is allowed to view. # datasets: an array of hashes with available statuses and resolutions. # url_image: URL of the generated graph. #%] @@ -29,11 +28,12 @@ <tr> <th>Product:</th> <td> - <select id="product_id" name="product_id"> - [% FOREACH product = products %] - <option value="[% product.id FILTER html %]">[% product.name || '-All-' FILTER html %]</option> - [% END %] - </select> + [% INCLUDE "global/product-select.html.tmpl" + id => "product_id" + name => "product_id" + valueattribute => "id" + add => "-All-" + %] </td> </tr> <tr> |