summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/classifications/select.html.tmpl
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2013-12-31 13:48:41 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2013-12-31 13:48:41 +0100
commit4fa178ae3f0f612cf91b26a2dea498602794be3b (patch)
treeae4bd380dfbc7e7f3d3392d9a4f9947a91e48077 /template/en/default/admin/classifications/select.html.tmpl
parent5a15633a1179f960e1726eebf7f38c7ee2f2b4f8 (diff)
downloadbugzilla-4fa178ae3f0f612cf91b26a2dea498602794be3b.tar.gz
bugzilla-4fa178ae3f0f612cf91b26a2dea498602794be3b.tar.xz
Bug 920681: Remove the cellspacing and cellpadding attributes from tables
r/a=justdave
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 %]