[Zope] Re: DTML Question

Maik Jablonski maik.jablonski@uni-bielefeld.de
Tue, 14 Jan 2003 11:07:10 +0100


beno wrote:
> Hi;
> I know one cannot nest DTML objects, but the below lets you know what 
> I'm trying to accomplish. What is the correct syntax?
> 
> <dtml-let folder="<dtml-var id>">

If you want to get the id of an object, you should use getId():

<dtml-let folder="getId()">
...
</dtml-let>

-mj