common.html.tmpl 5.64 KB
Newer Older
1 2 3
[%# This Source Code Form is subject to the terms of the Mozilla Public
  # License, v. 2.0. If a copy of the MPL was not distributed with this
  # file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
  #
5 6
  # This Source Code Form is "Incompatible With Secondary Licenses", as
  # defined by the Mozilla Public License, v. 2.0.
7 8
  #%]

9 10
[% sortlist_separator = '---' %]

11 12
<dl>
  [% FOREACH param = panel.param_list %]
13
    <dt id="[% param.name FILTER html %]_desc">[% param.name FILTER html %]</dt>
14 15 16
    <dd>[% panel.param_descs.${param.name} FILTER none %]
      <p>
      [% IF param.type == "t" %]
17
        <input type="text" size="80" name="[% param.name FILTER html %]"
18
               id="[% param.name FILTER html %]" value="[% Param(param.name) FILTER html %]">
19 20
      [% ELSIF param.type == "p" %]
        <input type="password" size="80" name="[% param.name FILTER html %]"
21 22
               id="[% param.name FILTER html %]" value="[% Param(param.name) FILTER html %]"
               autocomplete="off">
23
      [% ELSIF param.type == "l" %]
24 25
        <textarea name="[% param.name FILTER html %]" id="[% param.name FILTER html %]"
                  rows="10" cols="80">[% Param(param.name) FILTER html %]</textarea>
26
      [% ELSIF param.type == "b" %]
27 28 29 30 31 32
        <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>
33 34
      [% ELSIF param.type == "m" %]
        [% boxSize = 5 %]
35
        [% SET boxSize = param.choices.size IF param.choices.size < 5 %]
36 37

        <select multiple="multiple" size="[% boxSize FILTER html %]"
38
                name="[% param.name FILTER html %]" id="[% param.name FILTER html %]">
39 40 41
          [% FOREACH item = param.choices %]
            <option value="[% item FILTER html %]"
                    [% " selected=\"selected\"" IF lsearch(Param(param.name), item) != -1 %]>
42
              [% item FILTER html %]
43 44 45
            </option>
          [% END %]
        </select>
46 47 48 49 50
      [% ELSIF param.type == "o" %]
        <input id="input_[% param.name FILTER html %]" size="80"
               name="[% param.name FILTER html %]"
               value="[% Param(param.name) FILTER html %]"><br>
        [% boxSize = 7 %]
51
        [% SET boxSize = 3 + param.choices.size IF param.choices.size < 7 %]
52 53
        [% plist = Param(param.name).split(',') %]

54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
        <table id="table_[% param.name FILTER html %]" class="bz_default_hidden">
          <tr>
            <td rowspan="2">
              <select id="select_[% param.name FILTER html %]"
                      name="select_[% param.name FILTER html %]"
                      size="[% boxSize 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>
72
            <td class="bottom">
73 74 75 76 77 78
              <button type="button"
                      onClick="sortedList_moveItem('[% param.name FILTER html %]', -1, '[% sortlist_separator %]');">&uarr;</button>
            </td>
          </tr>

          <tr>
79
            <td class="top">
80 81 82 83 84 85 86 87 88
              <button type="button"
                      onClick="sortedList_moveItem('[% param.name FILTER html %]', +1, '[% sortlist_separator %]');">&darr;</button>
            </td>
          </tr>
        </table>

        <script type="text/javascript">
            bz_toggleClass("input_[% param.name FILTER html %]", "bz_default_hidden");
            bz_toggleClass("table_[% param.name FILTER html %]", "bz_default_hidden");
89
        </script>
90
      [% ELSIF param.type == "s" %]
91
        <select name="[% param.name FILTER html %]" id="[% param.name FILTER html %]">
92 93 94
          [% FOREACH item = param.choices %]
            <option value="[% item FILTER html %]"
                    [% " selected=\"selected\"" IF item == Param(param.name) %]>
95 96 97 98 99 100 101 102 103 104 105
              [% IF param.name == "defaultseverity" %]
                [% display_value("bug_severity", item) FILTER html %]
              [% ELSIF param.name == "defaultplatform" %]
                [% display_value("rep_platform", item) FILTER html %]
              [% ELSIF param.name == "defaultopsys" %]
                [% display_value("op_sys", item) FILTER html %]
              [% ELSIF param.name == "duplicate_or_move_bug_status" %]
                [% display_value("bug_status", item) FILTER html %]
              [% ELSE %]
                [% item FILTER html %]
              [% END %]
106 107 108 109
            </option>
          [% END %]
        </select>
      [% ELSE %]
110
        <span class="warning">
111
          Unknown param type [% param.type FILTER html %]!!!
112 113
        </span>
      [% END %]
114
      </p>
115 116 117 118 119 120 121
      [% UNLESS param.no_reset %]
        <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>
      [% END %]
122 123 124 125
      <hr>
    </dd>
  [% END %]
</dl>