summaryrefslogtreecommitdiffstats
path: root/template/en/default/attachment/confirm-delete.html.tmpl
blob: 4557af616a27f81adf0dbe727ce34a50ff4648b2 (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
[%# 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:
  # a: attachment object; attachment the user wants to delete.
  # token: string; The token used to identify the session.
  #%]

[% title = BLOCK %]
  Delete Attachment [% a.id FILTER html %] of [% terms.Bug %] [%+ a.bug_id FILTER html %]
[% END %]

[% PROCESS global/header.html.tmpl
  title = title
  doc_section = "attachments.html"
%]

<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>
  <tr>
    <td valign="top">Attachment ID:</td>
    <td valign="top">
      <a href="attachment.cgi?id=[% a.id FILTER html %]">[% a.id FILTER html %]</a>
    </td>
  </tr>
  <tr>
    <td valign="top">File name:</td>
    <td valign="top">[% a.filename FILTER html %]</td>
  </tr>
  <tr>
    <td valign="top">Description:</td>
    <td valign="top">[% a.description FILTER html %]</td>
  </tr>
  <tr>
    <td valign="top">Contained in [% terms.Bug %]:</td>
    <td valign="top">[% a.bug_id FILTER bug_link(a.bug_id) FILTER none %]</td>
  </tr>
  <tr>
    <td valign="top">Creator:</td>
    <td valign="top">[% a.attacher.identity FILTER html %]</td>
  </tr>
  <tr>
    <td valign="top">Creation Date:</td>
    <td valign="top">[% a.attached FILTER time %]</td>
  </tr>
</table>

<h2>Confirmation</h2>

<table border="0" cellpadding="20" width="70%" bgcolor="red">
  <tr>
    <td>
      The content of this attachment will be deleted in an <b>irreversible</b> way.
    </td>
  </tr>
</table>

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

<form action="attachment.cgi" method="POST">
  <label for="reason">Reason of the deletion:</label>
  <input type="text" id="reason" name="reason" value="" size="80" maxlength="200">
  <br>
  <input type="submit" value="Yes, delete" id="delete">
  <input type="hidden" name="action" value="delete">
  <input type="hidden" name="id" value="[% a.id FILTER html %]">
  <input type="hidden" name="token" value="[% token FILTER html %]">
</form>

<p>
  No, cancel this deletion and return to
  [%+ "$terms.bug " _ a.bug_id FILTER bug_link(a.bug_id) FILTER none %].
</p>

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