1 Feb 18:17
Is even/odd working in the current version?
That's pretty much self explanatory
This is in the docs:
=pod
<table>
<div
tal:omit-tag=""
tal:repeat="audience self/audiences"
>
<tr
class="odd"
tal:condition="true: audience/odd"
>
<td>
This a odd row, it comes before the even row.
</td>
</tr>
<tr
class="even"
tal:condition="true: audience/even"
>
<td>
This a even row.
</td>
</tr>
</div>
</table>
=cut
i'm getting false for both even and odd
(Continue reading)


RSS Feed