[Zope] Really dumb newbie question

Christopher J. Kucera ckucera@globalcrossing.com
Tue, 23 May 2000 11:23:22 -0500


>         <dtml-if action == "add">
>                 blah
>         </dtml-if>

<dtml-if "action == 'add'">
  blah
</dtml-if>

Things inside quotes get evaluated as Python expressions. :)

Have fun Zopeing!

-CJ