summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/products/list-classifications.html.tmpl
blob: ea32a00570599e1d1c0b7dcfdeba487fd50c8351 (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
[%# 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:
  # classifications: array of hashes having the following properties:
  #   - name: string; The name of the classification
  #   - description: string; The classification description (html allowed)
  #   - product_count: number; The number of products in this classification
  #
  #%]

[% PROCESS global/header.html.tmpl
  title = "Select Classification"
%]

[% columns = [
     { 
       name => "name"
       heading => "Edit products of..."
       contentlink => 'editproducts.cgi?classification=%%name%%'
     },
     { 
       name => "description"
       heading => "Description"
       allow_html_content => 1
     },
     { 
       name => "product_count"
       align => "right"
       heading => "Product Count"
     }
   ]
%]

[% IF user.in_group('editcomponents') %]
  [% columns.push({
       heading => "Action..."
       content => "Add product"
       contentlink => 'editproducts.cgi?action=add&classification=%%name%%' })
  %]
[% END %]

[% Hook.process('before_table') %]

[% PROCESS admin/table.html.tmpl
     columns = columns
     data = classifications
%]

[%# No need for the standard edit products footer, as we have an 'add'
    link in the table %]

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