diff options
author | bugreport%peshkin.net <> | 2004-08-11 14:08:10 +0200 |
---|---|---|
committer | bugreport%peshkin.net <> | 2004-08-11 14:08:10 +0200 |
commit | def7903801fcdbab2f227688375f38c5cb490f27 (patch) | |
tree | 770f8d2e9c056cbdf05065b3c86c8f3051210402 /template/en/default/list | |
parent | d7a8d47bebd3e45bb9b508e38e594a7b90407a06 (diff) | |
download | bugzilla-def7903801fcdbab2f227688375f38c5cb490f27.tar.gz bugzilla-def7903801fcdbab2f227688375f38c5cb490f27.tar.xz |
Bug 251669: add an option to show users in a drop down menu instead of a text edit field
patch by glob <bugzilla@glob.com.au>
r=joel
a=justdave
Diffstat (limited to 'template/en/default/list')
-rw-r--r-- | template/en/default/list/edit-multiple.html.tmpl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/template/en/default/list/edit-multiple.html.tmpl b/template/en/default/list/edit-multiple.html.tmpl index f03ea09e1..2f61ae45b 100644 --- a/template/en/default/list/edit-multiple.html.tmpl +++ b/template/en/default/list/edit-multiple.html.tmpl @@ -302,10 +302,12 @@ <label for="knob-reassign"><a href="page.cgi?id=fields.html#assigned_to"> Reassign</a> [% terms.bugs %] to </label> -<input name="assigned_to" - value="[% user.login FILTER html %]" - onchange="document.forms.changeform.knob[[% knum %]].checked = true;" - size="32"><br> +[% INCLUDE global/userselect.html.tmpl + name => "assigned_to" + value => user.login + size => 32 + onchange => "document.forms.changeform.knob[$knum].checked=true;" +%]<br> [% knum = knum + 1 %] <input id="knob-reassignbycomponent" |