diff options
author | burnus%gmx.de <> | 2003-08-22 22:55:13 +0200 |
---|---|---|
committer | burnus%gmx.de <> | 2003-08-22 22:55:13 +0200 |
commit | 115cc7b700979787e2adbb105832f27de4c89f28 (patch) | |
tree | cf1e927145dec0439e651b92d32c4a7afeafec98 /template/en | |
parent | d08d7d95cfb5813b08f4c0bbc50cc435f6cf275c (diff) | |
download | bugzilla-115cc7b700979787e2adbb105832f27de4c89f28.tar.gz bugzilla-115cc7b700979787e2adbb105832f27de4c89f28.tar.xz |
Bug 139011 - Improve buglist colors further
r,a=justdave
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/filterexceptions.pl | 3 | ||||
-rw-r--r-- | template/en/default/list/table.html.tmpl | 8 |
2 files changed, 6 insertions, 5 deletions
diff --git a/template/en/default/filterexceptions.pl b/template/en/default/filterexceptions.pl index 60590d4a4..34fc99380 100644 --- a/template/en/default/filterexceptions.pl +++ b/template/en/default/filterexceptions.pl @@ -251,11 +251,8 @@ ], 'list/table.html.tmpl' => [ - 'id', 'abbrev.$id.title || field_descs.$id || column.title', # 'tableheader', - 'bug.bug_severity', # - 'bug.priority', # 'bug.bug_id', ], diff --git a/template/en/default/list/table.html.tmpl b/template/en/default/list/table.html.tmpl index 53eb52b2d..da94b1eb9 100644 --- a/template/en/default/list/table.html.tmpl +++ b/template/en/default/list/table.html.tmpl @@ -76,7 +76,7 @@ <colgroup> <col class="bz_id_column"> [% FOREACH id = displaycolumns %] - <col class="bz_[% id %]_column"> + <col class="bz_[% id FILTER css_class_quote %]_column"> [% END %] </colgroup> @@ -136,7 +136,11 @@ [% tableheader %] [% END %] - <tr class="bz_[% bug.bug_severity %] bz_[% bug.priority %] [%+ "bz_secure" IF bug.isingroups %]"> + <tr class="bz_[% bug.bug_severity FILTER css_class_quote %] + bz_[% bug.priority FILTER css_class_quote %] + bz_[% bug.bug_status FILTER css_class_quote %] + bz_[% bug.resolution FILTER css_class_quote %] + [%+ "bz_secure" IF bug.isingroups %]"> <td> [% IF dotweak %]<input type="checkbox" name="id_[% bug.bug_id %]">[% END %] |