[Zope] Inherit from folder below
R. David Murray
bitz@bitdance.com
Tue, 9 May 2000 16:18:14 -0400 (EDT)
On Fri, 5 May 2000, lexberezhny wrote:
> which a value of "This is the title of sub_folder_title". How can i get
> access to "sub_folder_title" if I am in "top_folder"? I have tried <dtml-var
> "sub_folder/sub_folder_title"> but it gives me a name error on
Try
<dtml-with sub_folder>
<dtml-var sub_folder_title>
</dtml-with>
<dtml-var "sub_folder.sub_folder_title"> would probably also work.
--RDM