6 Mar
2003
6 Mar
'03
3:38 a.m.
I'm just starting to work with ZPT (as of today), the first question I have is; Is there a way to keep "template/title" from being displayed in the list that is generated by the tal:repeate directive? I'd like to generate a list of links that does not include the index_html page. My second question is: Is there any way to sort the list that's generated? --The code that I have-- <title tal:content="template/title">Title</title> </head> <body> <font size=+1 tal:content="template/title">Title</font> <UL tal:condition="container/objectValues"> <LI tal:repeat="item container/objectValues"> <span tal:replace="item/title">ITEM</span> </LI> </UL> thanks in advance