summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/products/confirm-delete.html.tmpl
blob: f1d6aa429df953d02fad79d708990d5226af29aa (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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
[%# 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.
  #%]

[%# INTERFACE:
  # product: Bugzilla::Product object; The product
  #
  # (classification fields available if Param('useclassification') is enabled:)
  #
  # classification: Bugzilla::Classification object; The classification 
  #                                                  the product is in
  #
  #%]

[% title = BLOCK %]Delete Product '[% product.name FILTER html %]'
[% END %]

[% PROCESS global/header.html.tmpl
  title = title
  style_urls = ['skins/standard/admin.css']
%]

<table border="1" cellpadding="4" cellspacing="0">
  <tr bgcolor="#6666FF">
    <th valign="top" class="left">Field</th>
    <th valign="top" class="left">Value</th>
  </tr>

  [% IF Param('useclassification') %]
    <tr>
      <td>Classification:</td>
      <td>[% classification.name FILTER html %]</td>
    </tr>
    <tr>
      <td>Classification Description:</td>
      [%# descriptions are intentionally not filtered to allow html content %]
      <td>
        [% IF classification.description %]
          [% classification.description FILTER html_light %]
        [% ELSE %]
          <span style="color: red">missing</span>
        [% END %]
      </td>
    </tr>
  [% END %]

  <tr>
    <td valign="top">Product:</td>
    <td valign="top">
      <a href="editproducts.cgi?product=[% product.name FILTER uri %]">
        [% product.name FILTER html %]
      </a>
    </td>
  </tr>
  <tr>
    <td valign="top">Description:</td>
    [%# descriptions are intentionally not filtered to allow html content %]
    <td valign="top">
      [% IF product.description %]
        [% product.description FILTER html_light %]
      [% ELSE %]
        <span style="color: red">missing</span>
      [% END %]
    </td>
  </tr>

  [% IF Param('usetargetmilestone') %]
    <tr>
      <td>Milestone URL:</td>
      <td>
        [% IF product.milestone_url %]
          <a href="[% product.milestone_url FILTER html %]">
            [%- product.milestone_url FILTER html %]
          </a>
        [% ELSE %]
          none
        [% END %]
      </td>
    </tr>
  [% END %]

  <tr>
    <td>Closed for [% terms.bugs %]:</td>
    <td>
      [% IF product.is_active %]
        open
      [% ELSE %]
        closed
      [% END %]
    </td>
  </tr>

  <tr>
    <td>
      [% IF product.components.size > 0 %]
        <a href="editcomponents.cgi?product=[% product.name FILTER uri %]"
           title="Edit components for product '[% product.name FILTER html %]'">
          Components:
        </a>
      [% ELSE %]
        Components:
      [% END %]
    </td>
    <td>
      [% IF product.components.size > 0 %]
        <table>
          [% FOREACH c = product.components %]
            <tr>
              <th>[% c.name FILTER html %]:</th>
              [%# descriptions are intentionally not filtered to allow html content %]
              <td>
                [% IF c.description %]
                  [% c.description FILTER html_light %]
                [% ELSE %]
                  <span style="color: red">missing</span>
                [% END %]
              </td>
            </tr>
          [% END %]
        </table>
      [% ELSE %]
        none
      [% END %]
    </td>
  </tr>

  <tr>
    <td>
      [% IF product.versions.size > 0 %]
        <a href="editversions.cgi?product=[%- product.name FILTER uri %]">
          Versions:
        </a>
      [% ELSE %]
        Versions:
      [% END %]
    </td>
    <td>
      [% IF product.versions.size > 0 %]
        [% FOREACH v = product.versions %]
          [% v.name FILTER html %]<br>
        [% END %]
      [% ELSE %]
        none
      [% END %]
    </td>
  </tr>


  [% IF Param('usetargetmilestone') %]
    <tr>
      <td valign="top">
        [% IF product.milestones.size > 0 %]
          <a href="editmilestones.cgi?product=[%- product.name FILTER uri %]">
            Milestones:
          </a>
        [% ELSE %]
          Milestones:
        [% END %]
      </td>
      <td>
        [% IF product.milestones.size > 0 %]
          [% FOREACH m = product.milestones %]
            [% m.name FILTER html %]<br>
          [% END %]
        [% ELSE %]
          none
        [% END %]
      </td>
    </tr>
  [% END %]

  <tr>
    <td>[% terms.Bugs %]:</td>
    <td>
      [% IF product.bug_count %]
        <a href="buglist.cgi?product=[% product.name FILTER uri %]"
           title="List of [% terms.bugs %] for product '[% product.name FILTER html %]'">
          [% product.bug_count FILTER html %]
        </a>
      [% ELSE %]
        none
      [% END %]
    </td>
  </tr>
</table>

<h2>Confirmation</h2>

[% IF product.bug_count %]

  [% IF !Param("allowbugdeletion") %]

    <p class="confirmation">Sorry, there

    [% IF product.bug_count > 1 %]
      are [% product.bug_count FILTER html %] [%+ terms.bugs %]
    [% ELSE %]
      is 1 [% terms.bug %]
    [% END %]

    outstanding for this product. You must reassign

    [% IF product.bug_count > 1 %]
       those [% terms.bugs %]
    [% ELSE %]
       that [% terms.bug %]
    [% END %]

    to another product before you can delete this one.</p>

  [% ELSE %]

    <table border="0" cellpadding="20" width="70%" bgcolor="red">
      <tr>
        <td>
          There
          [% IF product.bug_count > 1 %]
            are [% product.bug_count FILTER html %] [%+ terms.bugs %]
          [% ELSE %]
            is 1 [% terms.bug %]
          [% END %]
          entered for this product!  When you delete this
          product, <b>ALL</b> stored [% terms.bugs %] and
          their history will be deleted, too.
        </td>
      </tr>
    </table>

  [% END %]

[% END %]

[% Hook.process("confirmation") %]

[% IF product.bug_count == 0 || Param('allowbugdeletion') %]

  <p>Do you really want to delete this product?</p>

  <form method="post" action="editproducts.cgi">
    <input type="checkbox" id="delete_series" name="delete_series" value=1>
    <label for="delete_series">
      Delete all related series (you can also delete them later, by visiting
      the <a href="chart.cgi?category=[% product.name FILTER html %]">New Charts page</a>.)
    </label><p>
    <input type="submit" id="delete" value="Yes, delete">
    <input type="hidden" name="action" value="delete">
    <input type="hidden" name="product" value="[% product.name FILTER html %]">
    <input type="hidden" name="token" value="[% token FILTER html %]">
  </form>

[% END %]

[% PROCESS admin/products/footer.html.tmpl %]

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