Hi,
I have a flat structure
[ {'name':'uwe' }, {'name':'peter'}, {'name': 'jon' }, .... ]
and I want to render it to a two column table
<table>
<tr><td>uwe</td><td>peter</td></tr>
<tr><td>jon</td><td>.....</td></tr>
...
</table>
Is there a way to do this in ZPT alone, or do I have
to modify my data ?
I looked at the archives but found no solution.
Greetings, Uwe.