]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Patch for bug 178162: move the vote checkbox to the left; r=myk, a=myk.
authorjocuri%softhome.net <>
Fri, 12 Mar 2004 13:24:06 +0000 (13:24 +0000)
committerjocuri%softhome.net <>
Fri, 12 Mar 2004 13:24:06 +0000 (13:24 +0000)
template/en/default/bug/votes/list-for-user.html.tmpl

index 25c83c51921f743fe10f7566dc93fb7f7de36c72..d7214349c204e2e7430b2b4b36e64dc0ca418a51 100644 (file)
@@ -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 %]
         [% 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&amp;bug_id=[% bug.id %]">
-                [% bug.summary FILTER html %]
-              </a>
-            </td>
             <td align="right">
               [% IF canedit %]
                 [% IF product.onevoteonly %]
                 [% 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&amp;bug_id=[% bug.id %]">
+                [% bug.summary FILTER html %]
+              </a>
+            </td>
           </tr>
         [% END %]