summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/table.html.tmpl
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2014-01-07 11:42:19 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2014-01-07 11:42:19 +0100
commit2b574f4d63e4ada0db82ca5a56773b3acf771d78 (patch)
treeb9523ffbccca38f11cf862fb2eb32d95737d9541 /template/en/default/admin/table.html.tmpl
parentd4f65f36b7d31d50f39264882c5440b842429bba (diff)
downloadbugzilla-2b574f4d63e4ada0db82ca5a56773b3acf771d78.tar.gz
bugzilla-2b574f4d63e4ada0db82ca5a56773b3acf771d78.tar.xz
Bug 840407: Remove the "align" and "valign" attributes
r/a=justdave
Diffstat (limited to 'template/en/default/admin/table.html.tmpl')
-rw-r--r--template/en/default/admin/table.html.tmpl8
1 files changed, 2 insertions, 6 deletions
diff --git a/template/en/default/admin/table.html.tmpl b/template/en/default/admin/table.html.tmpl
index 3981ef4bb..993181c7f 100644
--- a/template/en/default/admin/table.html.tmpl
+++ b/template/en/default/admin/table.html.tmpl
@@ -25,8 +25,6 @@
# field_descs hash will be used instead of "content."
# See fieldvalues/select-field for an example of use.
# This content WILL be HTML-filtered in this case.
- # align: left/center/right. Controls the horizontal alignment of the
- # text in the column.
# allow_html_content: if defined, then this column allows some html content
# and so it will be only partially filtered.
# yesno_field: Turn the data from 0/!0 into Yes/No
@@ -89,7 +87,6 @@
[% contentlink = c.contentlink
content = c.content
content_use_field = c.content_use_field
- align = c.align
class = c.class
allow_html_content = c.allow_html_content
yesno_field = c.yesno_field
@@ -121,8 +118,7 @@
[% END %]
[% END %]
- <td [% IF align %] align="[% align FILTER html %]" [% END %]
- [% IF class %] class="[% class FILTER html %]" [% END %]>
+ <td [% IF class %] class="[% class FILTER html %]"[% END %]>
[% IF contentlink %]
[% FOREACH m = contentlink.match('%%(.+?)%%', 1) %]
@@ -155,7 +151,7 @@
[% END %]
[% IF data.size == 0 %]
- <tr><td colspan="[% columns.size %]" align="center"><i>&lt;none&gt;</i></td></tr>
+ <tr><td colspan="[% columns.size %]" class="center"><i>&lt;none&gt;</i></td></tr>
[% END %]