+-------[ John Poltorak ]----------------------
| 
| 
| I would like to create a folder (news) which contains several news items, 
| lets say news1, news2, news3.
| 
| I would like to set up a menu box which lists all the news items in 
| the news folder which when clicked on would load each one up.
| 
| 
| How do I code this up? (Hope someone understands what I'm getting at)

In a ZPT:

<p tal:repeat="news context/news/objectvalues">
        <a tal:attributes="href 
news/absolute_url"tal:content="news/title">Link</a>
</p>

-- 
Andrew Milton
[EMAIL PROTECTED]
_______________________________________________
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )

Reply via email to