[Zope] object paths with dtml-var -- newbie

Chris McDonough chrism@zope.com
Sun, 11 Aug 2002 23:36:24 -0400


> You can also write it as <dtml-var expr="images.mds_logo">

Probably not.  You'd at least need to do:

<dtml-var expr="images.mds_logo()">

... or more likely...

<dtml-var expr="images.mds_logo(_, REQUEST)">

or something of that ilk. ;-)

- C