summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/classifications/select.html.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'template/en/default/admin/classifications/select.html.tmpl')
-rw-r--r--template/en/default/admin/classifications/select.html.tmpl27
1 files changed, 18 insertions, 9 deletions
diff --git a/template/en/default/admin/classifications/select.html.tmpl b/template/en/default/admin/classifications/select.html.tmpl
index 02a3cd413..ffe183cfa 100644
--- a/template/en/default/admin/classifications/select.html.tmpl
+++ b/template/en/default/admin/classifications/select.html.tmpl
@@ -11,9 +11,9 @@
style_urls = ['skins/standard/admin.css']
%]
-<table border=1 cellpadding=4 cellspacing=0>
+<table id="admin_table">
<tr class="column_header">
- <th>Edit Classification ...</th>
+ <th>Edit Classification...</th>
<th>Description</th>
<th>Sortkey</th>
<th>Products</th>
@@ -22,26 +22,35 @@
[% 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">
+ <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 valign="top">[% cl.sortkey FILTER html %]</td>
+ <td>[% cl.sortkey FILTER html %]</td>
[% IF (cl.id == 1) %]
- <td valign="top">[% cl.product_count FILTER html %]</td>
+ <td>[% 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>
+ <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 valign="top">&nbsp;</td>
+ <td></td>
[% ELSE %]
- <td valign="top"><a href="editclassifications.cgi?action=del&amp;classification=[% cl.name FILTER uri %]">delete</a></td>
+ <td>
+ <a href="editclassifications.cgi?action=del&amp;classification=[% cl.name FILTER uri %]">delete</a>
+ </td>
[% END %]
</tr>
[% END %]