summaryrefslogtreecommitdiffstats
path: root/template/en/default/global/userselect.html.tmpl
blob: 8fa7e0360ac16df6624d6474839fdb16e42fae18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[%# 1.0@bugzilla.org %]
[%# The contents of this file are subject to the Mozilla Public
  # License Version 1.1 (the "License"); you may not use this file
  # except in compliance with the License. You may obtain a copy of
  # the License at http://www.mozilla.org/MPL/
  #
  # Software distributed under the License is distributed on an "AS
  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  # implied. See the License for the specific language governing
  # rights and limitations under the License.
  #
  # The Original Code is the Bugzilla Bug Tracking System.
  #
  # Contributor(s): Byron Jones <bugzilla@glob.com.au>
  #%]

[%# INTERFACE:
  # 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
  # accesskey: optional, input only; accesskey attribute value
  # size: optional, input only; size attribute value
  # emptyok: optional, select only;  if true, prepend menu option to start of select
  # multiple: optional, do multiselect box, value is size (height) of box
  # do_not_change: optional, contains the string meaning "do not alter this role"
  # custom_userlist: optional, specify a limited list of users to use
  #%]

[% 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 %]
  [% IF multiple %] multiple="multiple" size="[% multiple FILTER html %]" [% END %]
>
  [% IF emptyok %]
    <option value=""></option>
  [% END %]

  [% IF do_not_change %]
    <option value="[% do_not_change FILTER html %]">
      [% do_not_change FILTER html %]
    </option>
  [% END %]

  [% UNLESS custom_userlist %]
    [% custom_userlist = user.get_userlist %]
  [% END %]

  [% FOREACH tmpuser = custom_userlist %]
    [% IF tmpuser.visible OR value.match("\\b$tmpuser.login\\b") %]
      <option value="[% tmpuser.login FILTER html %]"
        [% " selected=\"selected\"" IF value.match("\\b$tmpuser.login\\b") %]
      >[% tmpuser.identity FILTER html %]</option>
    [% END %]
  [% END %]
</select>
[% ELSE %]
<input
  name="[% name FILTER html %]"
  value="[% value FILTER html %]"
  [% IF onchange %] onchange="[% onchange FILTER html %]" [% END %]
  [% 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 %]