[Zope] How to select pictures from another folder?

Geir Bækholt Geir Bækholt
Tue, 4 Mar 2003 11:13:12 +0100


SM> I've got a dtml-method index. There I want to call a picture, I do it
SM> like this:
SM> <dtml-var picture>
SM> That works fine...
SM> But now I want to get a picture which is in another folder.

<dtml-with Images>
    <dtml-var picture>
</dtml-with>

or :
<dtml-var "Images.picture">

or :
<dtml-var "Images['picture']">

:)

--
Geir Bækholt