diff options
author | rojanu <aliustek@gmail.com> | 2014-04-02 16:35:08 +0800 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-04-02 16:35:08 +0800 |
commit | b4aecfefc218d425c7c2b05d0878d4b062613a18 (patch) | |
tree | 436a2784b28faaecd14f1f9db26fb63821ffb9b6 /template/en/default/request/queue.html.tmpl | |
parent | b6027058e4a8e06ffc252645e5e8b695b0aa2802 (diff) | |
download | bugs-b4aecfefc218d425c7c2b05d0878d4b062613a18.tar bugs-b4aecfefc218d425c7c2b05d0878d4b062613a18.tar.gz bugs-b4aecfefc218d425c7c2b05d0878d4b062613a18.tar.bz2 bugs-b4aecfefc218d425c7c2b05d0878d4b062613a18.tar.xz bugs-b4aecfefc218d425c7c2b05d0878d4b062613a18.zip |
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/request/queue.html.tmpl')
-rw-r--r-- | template/en/default/request/queue.html.tmpl | 28 |
1 files changed, 6 insertions, 22 deletions
diff --git a/template/en/default/request/queue.html.tmpl b/template/en/default/request/queue.html.tmpl index 07dec7315..b2b76ba0b 100644 --- a/template/en/default/request/queue.html.tmpl +++ b/template/en/default/request/queue.html.tmpl @@ -67,28 +67,12 @@ to some group are shown by default. </td> <th>Product:</th> <td> - <select name="product" onchange="selectProduct(this, this.form.component, null, null, 'Any');"> - <option value="">Any</option> - [% IF Param('useclassification') %] - [% FOREACH c = user.get_selectable_classifications %] - <optgroup label="[% c.name FILTER html %]"> - [% FOREACH p = user.get_selectable_products(c.id) %] - <option value="[% p.name FILTER html %]" - [% " selected" IF cgi.param('product') == p.name %]> - [% p.name FILTER html %] - </option> - [% END %] - </optgroup> - [% END %] - [% ELSE %] - [% FOREACH p = user.get_selectable_products %] - <option value="[% p.name FILTER html %]" - [% " selected" IF cgi.param('product') == p.name %]> - [% p.name FILTER html %] - </option> - [% END %] - [% END %] - </select> + [% INCLUDE "global/product-select.html.tmpl" + id => "product" + name => "product" + add => "Any" + onchange => "selectProduct(this, this.form.component, null, null, 'Any');" + %] </td> <th>Flag:</th> <td> |