diff options
author | Reed Loden <reed@reedloden.com> | 2010-07-13 05:21:08 +0200 |
---|---|---|
committer | Reed Loden <reed@reedloden.com> | 2010-07-13 05:21:08 +0200 |
commit | 2ca9968dd1a1a018708a29c452d3969f16114a86 (patch) | |
tree | 9f4b4452a09f2767bea825ea4b0c74244e7d3bcf /template/en/default/request | |
parent | 88e8e01b2d6b5e81020730962f8e8e999b5b5ae8 (diff) | |
download | bugzilla-2ca9968dd1a1a018708a29c452d3969f16114a86.tar.gz bugzilla-2ca9968dd1a1a018708a29c452d3969f16114a86.tar.xz |
Bug 578253 - Add autocomplete support to the requester and requestee fields on request.cgi
[r=mkanat a=mkanat]
https://bugzilla.mozilla.org/show_bug.cgi?id=578254
Diffstat (limited to 'template/en/default/request')
-rw-r--r-- | template/en/default/request/queue.html.tmpl | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/template/en/default/request/queue.html.tmpl b/template/en/default/request/queue.html.tmpl index 8a36ab554..e2838c863 100644 --- a/template/en/default/request/queue.html.tmpl +++ b/template/en/default/request/queue.html.tmpl @@ -72,8 +72,16 @@ to some group are shown by default. <table id="filtering"> <tr> <th>Requester:</th> - <td><input type="text" name="requester" value="[% cgi.param('requester') FILTER html %]" size="20" - title="Requester's email address"></td> + <td> + [% INCLUDE global/userselect.html.tmpl + id => "requester" + name => "requester" + value => cgi.param('requester') + size => 20 + emptyok => 1 + title => "Requester's email address" + %] + </td> <th>Product:</th> <td> <select name="product" onchange="selectProduct(this, this.form.component, null, null, 'Any');"> @@ -121,8 +129,17 @@ to some group are shown by default. </tr> <tr> <th>Requestee:</th> - <td><input type="text" name="requestee" value="[% cgi.param('requestee') FILTER html %]" size="20" - title="Requestee's email address or "-" (hyphen) for requests with no requestee"></td> + <td> + [% INCLUDE global/userselect.html.tmpl + id => "requestee" + name => "requestee" + value => cgi.param('requestee') + size => 20 + emptyok => 1 + hyphenok => 1 + title => "Requestee's email address or "-" (hyphen) for requests with no requestee" + %] + </td> <th>Component:</th> <td> <select name="component"> |