summaryrefslogtreecommitdiffstats
path: root/extensions/BMO/template/en/default/hook/bug/create/create-form.html.tmpl
blob: ed09886bce9e4ca810712dd921f5443c57b50ada (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
  <tr>
    <th>Security:</th>
    <td colspan="3">
      [% IF user.in_group(product.default_security_group) %]
        [% PROCESS group_checkbox
                  name = product.default_security_group
                  desc = "Restrict access to this " _ terms.bug _ " to members of " _
                         "the \"" _ product.default_security_group_obj.description _ "\" group."
        %]
      [% ELSE %]
        [% PROCESS group_checkbox
                  name = product.default_security_group
                  desc = "Many users could be harmed by this security problem: " _
                          "it should be kept hidden from the public until it is resolved."
        %]
      [% END %]
      [% IF user.in_group('partner-confidential-visible') %]
        [% PROCESS group_checkbox
                   name = 'partner-confidential'
                   desc = "Restrict the visibility of this " _ terms.bug _ " to " _
                          "the assignee, QA contact, and CC list only."
        %]
      [% END %]
      [% IF user.in_group('mozilla-corporation-confidential-visible')
            && !user.in_group('mozilla-corporation-confidential') %]
        [% PROCESS group_checkbox
                   name = 'mozilla-corporation-confidential'
                   desc = "Restrict the visibility of this " _ terms.bug _ " to " _
                          "Mozilla Employees and Contractors only."
        %]
      [% END %]
      <br>
    </td>
  </tr>

[% BLOCK group_checkbox %]
  <input type="checkbox" name="groups"
         value="[% name FILTER none %]" id="group_[% name FILTER html %]"
    [% FOREACH group = product.groups_available %]
      [% IF group.name == name %]
        [% ' checked="checked"' IF default.groups.contains(group.name) OR group.is_default %]
        [% LAST %]
      [% END %]
    [% END %]
  >
  <label for="group_[% name FILTER html %]">[% desc FILTER html %]</label><br>
[% END %]