summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/params/common.html.tmpl
blob: 4e2b8f82120f09f7ac0fc349f984380ac5c9b74c (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
[%# 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.
  #
  # The Initial Developer of the Original Code is Netscape Communications
  # Corporation. Portions created by Netscape are
  # Copyright (C) 1998 Netscape Communications Corporation. All
  # Rights Reserved.
  #
  # Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
  #                 Marc Schumann <wurblzap@gmail.com>
  #%]
[%# INTERFACE:
  # panel: hash representing the current panel.
  #%]

[% sortlist_separator = '---' %]

<dl>
  [% FOREACH param = panel.param_list %]
    <dt><a name="[% param.name FILTER html %]">[% param.name FILTER html %]</a></dt>
    <dd>[% panel.param_descs.${param.name} FILTER none %]
      <p>
      [% IF param.type == "t" %]
        <input size="80" name="[% param.name FILTER html %]"
               value="[% Param(param.name) FILTER html %]">
      [% ELSIF param.type == "l" %]
        <textarea name="[% param.name FILTER html %]" rows="10" cols="80">
            [% Param(param.name) FILTER html %]</textarea>
      [% ELSIF param.type == "b" %]
        <input type="radio" name="[% param.name FILTER html %]" id="[% param.name FILTER html %]-on"
               value=1 [% "checked=\"checked\"" IF Param(param.name) %]>
        <label for="[% param.name FILTER html %]-on">On</label>
        <input type="radio" name="[% param.name FILTER html %]" id="[% param.name FILTER html %]-off"
               value=0 [% "checked=\"checked\"" IF !Param(param.name) %]>
        <label for="[% param.name FILTER html %]-off">Off</label>
      [% ELSIF param.type == "m" %]
        [% boxSize = 5 %]
        [% boxSize = param.choices.size IF param.choices.size < 5 %]

        <select multiple="multiple" size="[% boxSize FILTER html %]"
                name="[% param.name FILTER html %]">
          [% FOREACH item = param.choices %]
            <option value="[% item FILTER html %]"
                    [% " selected=\"selected\"" IF lsearch(Param(param.name), item) != -1 %]>
              [% item FILTER html %]
            </option>
          [% END %]
        </select>
      [% ELSIF param.type == "o" %]
        <script type="text/javascript"><!--
          document.write("<span style=\"display: none\">");
        // -->
        </script>
        <input id="input_[% param.name FILTER html %]" size="80"
               name="[% param.name FILTER html %]"
               value="[% Param(param.name) FILTER html %]"><br>
        <script type="text/javascript"><!--
          document.write("<\/span>");
        // -->
        </script>
        [% boxSize = 7 %]
        [% boxSize = 3 + param.choices.size IF param.choices.size < 7 %]
        [% plist = Param(param.name).split(',') %]

        <script type="text/javascript"><!--
          document.write(
            '<table>' +
            '  <tr>' +
            '    <td rowspan="2">' +
            '      <select id="select_[% param.name FILTER html %]"' +
            '              size="[% boxSize FILTER html %]"' +
            '              name="select_[% param.name FILTER html %]">' +
                     [% FOREACH item = plist %]
            '          <option value="[% item FILTER html %]">[% item FILTER html %]<\/option>' +
                     [% END %]
            '        <option class="sortlist_separator"' +
            '                disabled="disabled"' +
            '                value="[% sortlist_separator %]">active&uarr;&nbsp;&darr;inactive<\/option>' +
                     [% FOREACH item = param.choices %]
                       [% IF lsearch(plist, item) == -1 %]
            '            <option value="[% item FILTER html %]">[% item FILTER html %]<\/option>' +
                       [% END %]
                     [% END %]
            '      <\/select>' +
            '    <\/td>' +
            '    <td style="vertical-align: bottom">' +
            '      <button type="button"' +
            '              onClick="sortedList_moveItem(\'[% param.name FILTER html %]\', -1, \'[% sortlist_separator %]\');">&uarr;<\/button>' +
            '    <\/td>' +
            '  <\/tr>' +
            '  <tr>' +
            '    <td style="vertical-align: top">' +
            '      <button type="button"' +
            '              onClick="sortedList_moveItem(\'[% param.name FILTER html %]\', +1, \'[% sortlist_separator %]\');">&darr;<\/button>' +
            '    <\/td>' +
            '  <\/tr>' +
            '<\/table>');
        // -->
        </script>
      [% ELSIF param.type == "s" %]
        <select name="[% param.name FILTER html %]">
          [% FOREACH item = param.choices %]
            <option value="[% item FILTER html %]"
                    [% " selected=\"selected\"" IF item == Param(param.name) %]>
              [% item FILTER html %]
            </option>
          [% END %]
        </select>
      [% ELSE %]
        <font color="red">
          <blink>Unknown param type [% param.type FILTER html %]!!!</blink>
        </font>
      [% END %]  
      </p>
      <p>
        <input type="checkbox" name="reset-[% param.name FILTER html %]"
               id="reset-[% param.name FILTER html %]">
        <label for="reset-[% param.name FILTER html %]">Reset</label>
      </p>
      <hr>
    </dd>
  [% END %]
</dl>