(Tested with
<div tal:replace="if:options/x then:string:yes else:string:no">)

There are an awful lot of colons in there :-)


Here's an off-the-wall idea:

  <div tal:replace="talif"
       tal:if="options/x"
       tal:true="string:yes"
       tal:false="string:no"
       >

This looks better as a tal:tag

  <tal:block
      replace="talif"
      if="options/x"
      true="string:yes"
      false="string:no"
      >

Or, if you only use this kind of thing with tal:replace, tal:content and tal:define.

  <tal:block
      defineif="foo options/x"
      true="string:yes"
      false="string:no"
      >

Of course, none of this helps for tal:attributes.

--
Steve Alexander


_______________________________________________
Zope-Dev maillist - [EMAIL PROTECTED]
http://mail.zope.org/mailman/listinfo/zope-dev
** No cross posts or HTML encoding! **
(Related lists - http://mail.zope.org/mailman/listinfo/zope-announce
http://mail.zope.org/mailman/listinfo/zope )

Reply via email to