[Zope] HELP to start , PLS

Sam Gendler sgendler@impossible.com
Thu, 23 Mar 2000 01:29:09 -0800


>         <dtml-let name="bob"
>                 relation="uncle">
>         <dtml-var name> is your <dtml-var relation>
>       </dtml-let>       <dtml-let x=5 y=7>
>         <dtml-var x><dtml-var y>
>       </dtml-let>

try

<dtml-let name='bob'
                relation='uncle'>

When you use the double quotation mark, it processes the content between
the double quotes as python code to be executed.  Since there is no
python code called bob, it fails.  Putting single quotes treats the
value as a string.

--sam