summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/flag-type/confirm-delete.html.tmpl
blob: 70f5efb3d9af2809e1c0bc460c5ded41825772b3 (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
[%# 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/.
  #
  # This Source Code Form is "Incompatible With Secondary Licenses", as
  # defined by the Mozilla Public License, v. 2.0.
  #%]

[% title = BLOCK %]Confirm Deletion of Flag Type '[% flag_type.name FILTER html %]'[% END %]

[% PROCESS global/header.html.tmpl
  title = title
  doc_section = "flags-overview.html#flags-delete"
%]

<p>
  [% IF flag_type.flag_count %]
    There are [% flag_type.flag_count %] flags of type [% flag_type.name FILTER html %].
    If you delete this type, those flags will also be deleted.
  [% END %]

  Note that instead of deleting the type you can
   <a href="editflagtypes.cgi?action=deactivate&amp;id=[% flag_type.id %]&amp;token=
           [%- token FILTER html %]">deactivate it</a>,
   in which case the type [% IF flag_type.flag_count %] and its flags [% END %] will remain
   in the database but will not appear in the [% terms.Bugzilla %] UI.
</p>

<table>
   <tr>
      <td colspan="2">
         Do you really want to delete this type?
      </td>
   </tr>
   <tr>
      <td>
         <a href="editflagtypes.cgi?action=delete&amp;id=[% flag_type.id %]&amp;token=
                 [%- token FILTER html %]">Yes, delete
         </a>
      </td>
      <td align="right">
         <a href="editflagtypes.cgi">
            No, don't delete
         </a>
      </td>
   </tr>
</table>

[% PROCESS global/footer.html.tmpl %]