[Zope-CMF] Displaying portal content

Peter Blomert blomert@hagen.de
Wed, 18 Apr 2001 15:28:20 +0200


You can attach the namespace of your folder with the with-tag
try this (in action_box)

<tr class="&dtml-AuthClass;">
<td>
<dtml-with about>
<dtml-in expr="objectValues()">
<a href="&dtml-absolute_url;"><dtml-var title_or_id></a><br>
</dtml-in>
</dtml-with>
</td>
</tr>

without the with -tag it wont work, it would list all objects in current folder. with the with-tag it will list the objects in "about". if you want to be sure, that only the items in "about" are listed, write
<dtml-with about only>

cu online

Peter