summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/products/confirm-delete.html.tmpl
blob: 8a24cfd4e5c6d5d8efe11f0c05e0736eded9eb77 (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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
[%# 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.
  #
  # Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org>
  #%]

[%# 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']
%]

[% IF classification %]
  [% classification_url_part = BLOCK %]&amp;classification=
    [%- classification.name FILTER url_quote %]
  [%- END %]
[% ELSE %]
  [% classification_url_part = "" %]
[% END %]

<table border="1" cellpadding="4" cellspacing="0">
  <tr bgcolor="#6666FF">
    <th valign="top" align="left">Field</th>
    <th valign="top" align="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 url_quote %]
         [%- classification_url_part %]">
        [% 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 uri %]">
            [%- product.milestone_url FILTER html %]
          </a>
        [% ELSE %]
          none
        [% END %]
      </td>
    </tr>
  [% END %]

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

  <tr>
    <td>
      [% IF product.components.size > 0 %]
        <a href="editcomponents.cgi?product=[% product.name FILTER url_quote %]
           [%- classification_url_part %]"
           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 align="right">[% 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 url_quote %]
           [%- classification_url_part %]">
          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 url_quote %]
             [%- classification_url_part -%]">
            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 url_quote %]
           [%- classification_url_part %]"
           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>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><blink>ALL</blink></b> stored [% terms.bugs %] and
          their history will be deleted, too.
        </td>
      </tr>
    </table>

  [% END %]

[% END %]

[% 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="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 %]">
    <input type="hidden" name="classification"
           value="[% classification.name FILTER html %]">
  </form>

[% END %]

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

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