summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/classifications/del.html.tmpl
blob: f99d29632f1e085f867ef32ce3cd3c92b6fe5bc8 (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
[%# 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.
  #%]

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

<table border=1 cellpadding=4 cellspacing=0>
<tr class="column_header">
  <th valign="top" class="left">Part</th>
  <th valign="top" class="left">Value</th>

</tr><tr>
  <td valign="top">Classification:</td>
  <td valign="top">[% classification.name FILTER html %]</td>

</tr><tr>
  <td valign="top">Description:</td>
  <td valign="top">
    [% IF classification.description %]
      [% classification.description FILTER html_light %]
    [% ELSE %]
      <span class="warning">description missing</span>
    [% END %]
  </td>

</tr><tr>
  <td valign="top">Sortkey:</td>
  <td valign="top">[% classification.sortkey FILTER html %]</td>

</tr>
</table>

<h2>Confirmation</h2>

<p>Do you really want to delete this classification?</p>
<form method=post action="editclassifications.cgi">
  <input type=submit value="Yes, delete">
  <input type=hidden name="action" value="delete">
  <input type=hidden name="classification" value="[% classification.name FILTER html %]">
  <input type="hidden" name="token" value="[% token FILTER html %]">
</form>

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

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