summaryrefslogtreecommitdiffstats
path: root/template/en/default/bug/create
diff options
context:
space:
mode:
authorbugreport%peshkin.net <>2004-08-11 14:08:10 +0200
committerbugreport%peshkin.net <>2004-08-11 14:08:10 +0200
commitdef7903801fcdbab2f227688375f38c5cb490f27 (patch)
tree770f8d2e9c056cbdf05065b3c86c8f3051210402 /template/en/default/bug/create
parentd7a8d47bebd3e45bb9b508e38e594a7b90407a06 (diff)
downloadbugzilla-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/bug/create')
-rw-r--r--template/en/default/bug/create/create.html.tmpl15
1 files changed, 12 insertions, 3 deletions
diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl
index 3364649e8..ecb3dd8c9 100644
--- a/template/en/default/bug/create/create.html.tmpl
+++ b/template/en/default/bug/create/create.html.tmpl
@@ -185,8 +185,12 @@ function set_assign_to() {
</strong>
</td>
<td colspan="3">
- <input name="assigned_to" size="32"
- value="[% assigned_to FILTER html %]">
+ [% INCLUDE global/userselect.html.tmpl
+ name => "assigned_to"
+ value => assigned_to
+ size => 32
+ emptyok => 1
+ %]
<noscript>(Leave blank to assign to default component owner)</noscript>
</td>
</tr>
@@ -194,7 +198,12 @@ function set_assign_to() {
<tr>
<td align="right"><strong>Cc:</strong></td>
<td colspan="3">
- <input name="cc" size="45" value="[% cc FILTER html %]">
+ [% INCLUDE global/userselect.html.tmpl
+ name => "cc"
+ value => cc
+ size => 45
+ emptyok => 1
+ %]
</td>
</tr>