Bug 272658 : Add user dropdowns to editcomponents.cgi

Patch by GavinS <bugzilla@chimpychompy.org>    r=glob   a=myk
This commit is contained in:
travis%sedsystems.ca 2005-01-27 19:09:39 +00:00
parent 2aadb23379
commit 949cb0555f
3 changed files with 44 additions and 10 deletions

View File

@ -45,13 +45,30 @@
</td>
</tr>
<tr>
<th align="right">Initial Owner:</th>
<td><input size="64" maxlength="64" name="initialowner" value=""></td>
<th align="right"><label for="initialowner">Initial Owner:</label></th>
<td>
[% INCLUDE global/userselect.html.tmpl
name => "initialowner"
id => "initialowner"
value => ""
size => 64
emptyok => 1
%]
</td>
</tr>
[% IF Param('useqacontact') %]
<tr>
<th align="right">Initial QA Contact:</th>
<td><input size="64" maxlength="64" name="initialqacontact" value=""></td>
<th align="right">
<label for="initialqacontact">Initial QA Contact:</label></th>
<td>
[% INCLUDE global/userselect.html.tmpl
name => "initialqacontact"
id => "initialqacontact"
value => ""
size => 64
emptyok => 1
%]
</td>
</tr>
[% END %]
</table>

View File

@ -55,16 +55,30 @@
</td>
</tr>
<tr>
<td valign="top">Initial owner:</td>
<td><input size="64" maxlength="64" name="initialowner" value="
[%- initialowner FILTER html %]"></td>
<td valign="top"><label for="initialowner">Initial owner:</label></td>
<td>
[% INCLUDE global/userselect.html.tmpl
name => "initialowner"
id => "initialowner"
value => initialowner
size => 64
emptyok => 1
%]
</td>
[% IF Param('useqacontact') %]
</tr>
<tr>
<td valign="top">Initial QA contact:</td>
<td><input size="64" maxlength="64" name="initialqacontact" value="
[%- initialqacontact FILTER html %]"></td>
<td valign="top"><label for="initialqacontact">Initial QA contact:</label></td>
<td>
[% INCLUDE global/userselect.html.tmpl
name => "initialqacontact"
id => "initialqacontact"
value => initialqacontact
size => 64
emptyok => 1
%]
</td>
[% END %]
</tr>

View File

@ -18,6 +18,7 @@
# userlist: select only; array reference with list of users and identities
# userlist is built by Bugzilla::User::get_userlist()
# name: mandatory; field name
# id: optional; field id
# value: optional; default field value/selection
# onchange: optional; onchange attribute value
# disabled: optional; if true, the field is disabled
@ -30,6 +31,7 @@
[% IF Param("usemenuforusers") %]
<select name="[% name FILTER html %]"
[% IF id %] id="[% id FILTER html %]" [% END %]
[% IF onchange %] onchange="[% onchange FILTER html %]" [% END %]
[% IF disabled %] disabled="[% disabled FILTER html %]" [% END %]
[% IF accesskey %] accesskey="[% accesskey FILTER html %]" [% END %]
@ -54,6 +56,7 @@
[% IF disabled %] disabled="[% disabled FILTER html %]" [% END %]
[% IF accesskey %] accesskey="[% accesskey FILTER html %]" [% END %]
[% IF size %] size="[% size FILTER html %]" [% END %]
[% IF id %] id="[% id FILTER html %]" [% END %]
>
[% END %]