diff options
author | lpsolit%gmail.com <> | 2005-12-12 10:59:17 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-12-12 10:59:17 +0100 |
commit | 8f0392987468c8b6f93c375ca1e0314e276b4ce2 (patch) | |
tree | 738e26450317b8713279f36cf1221245a468a8e9 /template | |
parent | 664dc7a8661895a5e5f737fbf5bbcc18d0334e3a (diff) | |
download | bugzilla-8f0392987468c8b6f93c375ca1e0314e276b4ce2.tar.gz bugzilla-8f0392987468c8b6f93c375ca1e0314e276b4ce2.tar.xz |
Bug 277690: Missing table cells on votes for user list - Patch by Olav Vitters <bugzilla-mozilla@bkor.dhs.org> r=LpSolit a=justdave
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/votes/list-for-user.html.tmpl | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/template/en/default/bug/votes/list-for-user.html.tmpl b/template/en/default/bug/votes/list-for-user.html.tmpl index e0d97acb1..c6135a752 100644 --- a/template/en/default/bug/votes/list-for-user.html.tmpl +++ b/template/en/default/bug/votes/list-for-user.html.tmpl @@ -90,17 +90,16 @@ [% END %] <tr> <th>[% product.name FILTER html %]</th> - <td></td> - [% IF product.maxperbug < product.maxvotes AND - product.maxperbug > 1 %] - <td> + <td colspan="3"> + [% IF product.maxperbug < product.maxvotes AND + product.maxperbug > 1 %] <font size="-1"> (Note: only [% product.maxperbug %] vote [% "s" IF product.maxperbug != 1 %] allowed per [% terms.bug %] in this product.) </font> - </td> - [% END %] + [% END %] + </td> </tr> [% FOREACH bug = product.bugs %] |