1[%# This Source Code Form is subject to the terms of the Mozilla Public
2  # License, v. 2.0. If a copy of the MPL was not distributed with this
3  # file, You can obtain one at http://mozilla.org/MPL/2.0/.
4  #
5  # This Source Code Form is "Incompatible With Secondary Licenses", as
6  # defined by the Mozilla Public License, v. 2.0.
7  #%]
8
9[% PROCESS global/header.html.tmpl
10  title = "Delete classification"
11  style_urls = ['skins/standard/admin.css']
12%]
13
14<table id="admin_table">
15  <tr class="column_header">
16    <th>Field</th>
17    <th>Value</th>
18  </tr>
19  <tr>
20    <td>Classification</td>
21    <td>[% classification.name FILTER html %]</td>
22  </tr>
23  <tr>
24    <td>Description</td>
25    <td>
26      [% IF classification.description %]
27        [% classification.description FILTER html_light %]
28      [% ELSE %]
29        <span class="warning">description missing</span>
30      [% END %]
31    </td>
32  </tr>
33  <tr>
34    <td>Sortkey</td>
35    <td>[% classification.sortkey FILTER html %]</td>
36  </tr>
37</table>
38
39<h2>Confirmation</h2>
40
41<p>Do you really want to delete this classification?</p>
42<form method=post action="editclassifications.cgi">
43  <input type=submit value="Yes, delete">
44  <input type=hidden name="action" value="delete">
45  <input type=hidden name="classification" value="[% classification.name FILTER html %]">
46  <input type="hidden" name="token" value="[% token FILTER html %]">
47</form>
48
49[% PROCESS admin/classifications/footer.html.tmpl %]
50
51[% PROCESS global/footer.html.tmpl %]
52