View Single Post
Old 11-06-2008, 03:54 PM   #10 (permalink)
awuehr
The Contributor
 
awuehr's Avatar
 
Join Date: Oct 2008
Location: Nuremberg, Germany
Posts: 26
Thanks: 3
awuehr is on a distinguished road
Default

You should consider to use an 3d array like
PHP Code:
$phptal->persons = array(
    array(
'person1''person2''person3''person4'),
    array(
'person5''person6''person7''person8'),
    array(
'person9''person10''person11''person12')
); 
HTML would be
HTML Code:
<table>
    <tr tal:repeat="person_line persons">
        <td tal:repeat="person person_line" tal:content="person">...</td>
    </tr>
</table>
Greetings,

Alex
Send a message via ICQ to awuehr Send a message via Skype™ to awuehr
awuehr is offline  
Reply With Quote
The Following User Says Thank You to awuehr For This Useful Post:
Runar (11-06-2008)