diff options
author | jocuri%softhome.net <> | 2004-03-12 14:24:06 +0100 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-03-12 14:24:06 +0100 |
commit | 98c69ff9bc7a1a3a1c6f48450e7e0f35d7a87b84 (patch) | |
tree | d1121a54bd9576d98a1a7e0bfacca1ad8bb3a6ed /template | |
parent | a53181e2a865928dfe3dc6c579c257e8aef2f1ab (diff) | |
download | bugzilla-98c69ff9bc7a1a3a1c6f48450e7e0f35d7a87b84.tar.gz bugzilla-98c69ff9bc7a1a3a1c6f48450e7e0f35d7a87b84.tar.xz |
Patch for bug 178162: move the vote checkbox to the left; r=myk, a=myk.
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/votes/list-for-user.html.tmpl | 24 |
1 files changed, 12 insertions, 12 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 25c83c519..d7214349c 100644 --- a/template/en/default/bug/votes/list-for-user.html.tmpl +++ b/template/en/default/bug/votes/list-for-user.html.tmpl @@ -44,9 +44,9 @@ <table cellspacing="4"> <tr> <td></td> + <th>Votes</th> <th>[% terms.Bug %] #</th> <th>Summary</th> - <th>Votes</th> </tr> [% onevoteproduct = 0 %] @@ -75,17 +75,6 @@ [% FOREACH bug = product.bugs %] <tr> <td></td> - <td> - [% "<strike>" IF NOT bug.opened %] - <a href="show_bug.cgi?id=[% bug.id %]"> - [% bug.id %]</a> - [% "</strike>" IF NOT bug.opened %] - </td> - <td> - <a href="votes.cgi?action=show_bug&bug_id=[% bug.id %]"> - [% bug.summary FILTER html %] - </a> - </td> <td align="right"> [% IF canedit %] [% IF product.onevoteonly %] @@ -99,6 +88,17 @@ [% bug.count %] [% END %] </td> + <td align="right"> + [% "<strike>" IF NOT bug.opened %] + <a href="show_bug.cgi?id=[% bug.id %]"> + [% bug.id %]</a> + [% "</strike>" IF NOT bug.opened %] + </td> + <td> + <a href="votes.cgi?action=show_bug&bug_id=[% bug.id %]"> + [% bug.summary FILTER html %] + </a> + </td> </tr> [% END %] |