r=kiko r=mkanat r=mrbball a=LpSolit git-svn-id: svn://10.0.0.236/trunk@263258 18797224-902f-48f8-a5cc-f745e15eee43
55 lines
1.9 KiB
Cheetah
55 lines
1.9 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"
|
|
%]
|
|
|
|
<table border=1 cellpadding=4 cellspacing=0>
|
|
<tr bgcolor="#6666ff">
|
|
<th align="left">Edit Classification ...</th>
|
|
<th align="left">Description</th>
|
|
<th align="left">Sortkey</th>
|
|
<th align="left">Products</th>
|
|
<th align="left">Action</th>
|
|
</tr>
|
|
|
|
[% FOREACH cl = classifications %]
|
|
<tr>
|
|
<td valign="top"><a href="editclassifications.cgi?action=edit&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 %]
|
|
<font color="red">none</font>
|
|
[% 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&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"> </td>
|
|
[% ELSE %]
|
|
<td valign="top"><a href="editclassifications.cgi?action=del&classification=[% cl.name FILTER uri %]">delete</a></td>
|
|
[% END %]
|
|
</tr>
|
|
[% END %]
|
|
|
|
<tr>
|
|
<td valign="top" colspan=4>Add a new classification</td>
|
|
<td valign="top" align="center"><a href="editclassifications.cgi?action=add">Add</a></td>
|
|
</tr>
|
|
</table>
|
|
|
|
[% PROCESS global/footer.html.tmpl %]
|