Hello, I'm very new to zope and I was wondering how I can reference a property that is in a subfolder. ex: there is a folder called "main" inside the "main" there is a folder called "sub" and I create a property called "message" is there a way for me to call to that property outside of that folder. Any help would be greatly appreciated. -Jon
----- Original Message ----- From: Jonathan Park <jpark@amazingmedia.com>
ex: there is a folder called "main" inside the "main" there is a folder called "sub" and I create a property called "message"
is there a way for me to call to that property outside of that folder.
Anywhere inside the "main" folder, you should be able to write <dtml-var expr="sub.message">. Outside of "main", you would have to write <dtml-var expr="main.sub.message"> or possibly <dtml-var expr="f1.f2.main.sub.message"> if "main" is in "f2" is in "f1". Cheers, Evan @ digicool & 4-am
participants (2)
-
Evan Simpson -
Jonathan Park