summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/classifications/select.html.tmpl
blob: ffe183cfa34d1b772f3012ca7fc71bb9b591cad2 (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
[%# 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 id="admin_table">
  <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>
        <a href="editclassifications.cgi?action=edit&amp;classification=[% cl.name FILTER uri %]">
          <b>[% cl.name FILTER html %]</b>
        </a>
      </td>
      <td>
      [% IF cl.description %]
        [% cl.description FILTER html_light %]
      [% ELSE %]
        <span class="warning">none</span>
      [% END %]
      </td>
      <td>[% cl.sortkey FILTER html %]</td>
      [% IF (cl.id == 1) %]
        <td>[% cl.product_count FILTER html %]</td>
      [% ELSE %]
        <td>
          <a href="editclassifications.cgi?action=reclassify&amp;classification=[% cl.name FILTER uri %]">
            reclassify&nbsp;([% cl.product_count FILTER html %])</a>
        </td>
      [% END %]

      [%# don't allow user to delete the default id. %]
      [% IF (cl.id == 1) %]
        <td></td>
      [% ELSE %]
        <td>
          <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 %]