diff options
author | lpsolit%gmail.com <> | 2006-09-09 08:11:40 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-09-09 08:11:40 +0200 |
commit | a806b298f5bfe5914f27a1419d27366fe59da449 (patch) | |
tree | 25d737aeb60f17360de9a67f2017369a4d5d8349 /template/en/default/bug | |
parent | 27c1be36a3cbc57e01c8d51af85be76b0748ece6 (diff) | |
download | bugzilla-a806b298f5bfe5914f27a1419d27366fe59da449.tar.gz bugzilla-a806b298f5bfe5914f27a1419d27366fe59da449.tar.xz |
Bug 287326: Ability to add custom single-select fields to a bug - Patch by Frédéric Buclin <LpSolit@gmail.com> and Max Kanat-Alexander <mkanat@bugzilla.org> r=mkanat a=myk
Diffstat (limited to 'template/en/default/bug')
-rw-r--r-- | template/en/default/bug/field.html.tmpl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/template/en/default/bug/field.html.tmpl b/template/en/default/bug/field.html.tmpl index 59020518b..008674d60 100644 --- a/template/en/default/bug/field.html.tmpl +++ b/template/en/default/bug/field.html.tmpl @@ -42,6 +42,14 @@ [% SWITCH field.type %] [% CASE constants.FIELD_TYPE_FREETEXT %] <input name="[% field.name FILTER html %]" value="[% value FILTER html %]" size="60"> + [% CASE constants.FIELD_TYPE_SINGLE_SELECT %] + <select id="[% field.name FILTER html %]" name="[% field.name FILTER html %]"> + [% FOREACH legal_value = field.legal_values %] + <option value="[% legal_value FILTER html %]" + [%- " selected=\"selected\"" IF value == legal_value %]> + [%- legal_value FILTER html %]</option> + [% END %] + </select> [% END %] [% ELSE %] [% value FILTER html %] |