[Zope] ZPT newbie Q

G. Clifford Williams gcw-python@rezidew.net
Wed, 5 Mar 2003 21:38:58 -0600


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