[Zope] Nested dtml???
Tim Hicks
Tim Hicks" <tim.hicks@iname.com
Tue, 29 Aug 2000 03:07:26 +0100
I am trying to work my way up through folders, checking whether each
folder has a property named 'site_root_folder'. Logically (in *my*
head anyway), what I have written below is what I want to do, but I'm
not sure that I'm really writing this the write way. I vaguely
remember reading that I can't nest dtml-if tags within dtml-in tags.
I'd really appreciate any help on this
tim
<dtml-let level=0>
<dtml-in level>
<dtml-if "PARENTS[level].hasProperty('site_root_folder')">
<dtml-var "PARENTS[level].absolute_url()">
<dtml-else level="level+1">
</dtml-in>
</dtml-let>
Tim: tim.hicks@iname.com