[Zope] Aligning Images With Text

R. David Murray bitz@bitdance.com
Wed, 12 Jul 2000 16:11:01 -0400 (EDT)


On Wed, 12 Jul 2000, Terry Babbey wrote:
> Now if only I could get my dtml-if statement working.
> > > <dtml-if "_[ProgCode + 'PIC']">

I believe this should work (mostly tested):

<dtml-if "_.has_key(ProgCode + 'PIC')">

Note that this will be true if the id exists anywhere in the
acquisition path.

--RDM