r/a=justdave git-svn-id: svn://10.0.0.236/trunk@265157 18797224-902f-48f8-a5cc-f745e15eee43
65 lines
1.8 KiB
Cheetah
65 lines
1.8 KiB
Cheetah
[%# 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&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&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></td>
|
|
[% ELSE %]
|
|
<td>
|
|
<a href="editclassifications.cgi?action=del&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 %]
|