[Zope] dtml question from a newbizzzzz I want to access a dtml page under a subfolder subfolder

Marcel Preda marcel@punto.it
Thu, 27 Jul 2000 10:54:11 +0200 (CEST)


On Thu, 27 Jul 2000 dsergent@imexpert.com wrote:

> 
> I want to access a dtml page under a subfolder
> 
> - portal (folder)
>    - index1 (dtml)
>    - reunion (folder)
>       -  index2 (dtml)
> 
> 
> I want to acces the index2 variable in the index1 dtml page. How can I do
> it ?
> 
> thks for your answer
> David Sergent
> 

<dtml-with reunion>
<dtml-var index2>
</dtml-with>

OR
<dtml-var "reunion.index2">

PM