summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/classifications/select.html.tmpl
blob: 02a3cd413454a2d4f7c9aa35ef12d44f43148dcf (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
[%# 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 = "Select classification"
  style_urls = ['skins/standard/admin.css']
%]

<table border=1 cellpadding=4 cellspacing=0>
  <tr class="column_header">
    <th>Edit Classification ...</th>
    <th>Description</th>
    <th>Sortkey</th>
    <th>Products</th>
    <th>Action</th>
  </tr>

  [% FOREACH cl = classifications %]
    <tr>
      <td valign="top"><a href="editclassifications.cgi?action=edit&amp;classification=[% cl.name FILTER uri %]"><b>[% cl.name FILTER html %]</b></a></td>
      <td valign="top"> 
      [% IF cl.description %]
        [% cl.description FILTER html_light %]
      [% ELSE %]
        <span class="warning">none</span>
      [% END %]
      </td>
      <td valign="top">[% cl.sortkey FILTER html %]</td>
      [% IF (cl.id == 1) %]
        <td valign="top">[% cl.product_count FILTER html %]</td>
      [% ELSE %]
        <td valign="top"><a href="editclassifications.cgi?action=reclassify&amp;classification=[% cl.name FILTER uri %]">reclassify ([% cl.product_count FILTER html %])</a></td>
      [% END %]

      [%# don't allow user to delete the default id. %]
      [% IF (cl.id == 1) %]
        <td valign="top">&nbsp;</td>
      [% ELSE %]
        <td valign="top"><a href="editclassifications.cgi?action=del&amp;classification=[% cl.name FILTER uri %]">delete</a></td>
      [% END %]
    </tr>
  [% END %]

</table>

<p>
  <a href="editclassifications.cgi?action=add">Add a new classification</a>.
</p>

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