[Checkins] SVN: plone.z3cform/trunk/ fix even/odd labels

David Glick davidglick at onenw.org
Thu Mar 18 02:22:53 EDT 2010


Log message for revision 110049:
  fix even/odd labels

Changed:
  U   plone.z3cform/trunk/docs/HISTORY.txt
  U   plone.z3cform/trunk/plone/z3cform/crud/crud-table.pt

-=-
Modified: plone.z3cform/trunk/docs/HISTORY.txt
===================================================================
--- plone.z3cform/trunk/docs/HISTORY.txt	2010-03-18 01:09:07 UTC (rev 110048)
+++ plone.z3cform/trunk/docs/HISTORY.txt	2010-03-18 06:22:52 UTC (rev 110049)
@@ -4,6 +4,9 @@
 0.5.11 - unreleased
 -------------------
 
+* In the CRUD table, fix odd/even labels, which were reversed.
+  [limi]
+
 * Added slots to the ``titlelessform`` macro. See ``README.txt`` for details.
   [optilude, davisagli]
 

Modified: plone.z3cform/trunk/plone/z3cform/crud/crud-table.pt
===================================================================
--- plone.z3cform/trunk/plone/z3cform/crud/crud-table.pt	2010-03-18 01:09:07 UTC (rev 110048)
+++ plone.z3cform/trunk/plone/z3cform/crud/crud-table.pt	2010-03-18 06:22:52 UTC (rev 110049)
@@ -51,7 +51,7 @@
           <tal:block repeat="row view/subforms">
             <a name="" tal:attributes="name string:edit-${row/content_id}" />
             <tr tal:content="structure row/render"
-                tal:attributes="class python:repeat['row'].odd() and 'odd' or 'even'" />
+                tal:attributes="class python:repeat['row'].odd() and 'even' or 'odd'" />
           </tal:block>
         </tbody>
     </table>



More information about the checkins mailing list