[Zope] How do I do this using Zope?
Andrew Milton
akm at theinternet.com.au
Mon Mar 6 04:54:31 EST 2006
+-------[ 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
akm at theinternet.com.au
More information about the Zope
mailing list