20 Oct
2003
20 Oct
'03
2:48 p.m.
'''' index_html <html>
<body> <table > <tr tal:repeat="item container/myfiles"> <td tal:content="item/getId">Sample.tgz</td> </tr>
</table>
</body> </html>
and a python file '''myfiles return container.objectValues('File')
You call the "myfiles" script on the container object, and then you call "container.objectValues", which will return the objectValues of the containers container. Maybe return context.objectValues('File') would work better?