[Zope] image manipulation in tables

Bill Kerr kerrb@senet.com.au
Sat, 11 May 2002 00:36:32 +0930


this code creates a table with images in the first column and captions in
the second column
(images from a folder called Personal)
how could I rewrite it so images go in the first row and captions in the
second row?

<dtml-in expr="Personal.objectValues('Image')">
<tr>
  <td>
      <dtml-var sequence-item>
   </td>
  <td>
      <dtml-var title>
   </td>
</tr>
</dtml-in>

it seems hard to me
- Bill