On 8/13/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> I have this line of code:
> <span tal:condition="python:request.has_key('checkbox_1')" tal:omit-tag="">
Better written as <tal:block condition="exists:request/checkbox_1">
> I would like to do the exact opposite of that. In other words, have the
> condition render if checkbox_1 does not exist. How do I do that?
Either use a 'not' in your python expression ("python:not
request.has_key") or use the not: tales modifier:
<tal:block condition="not:exists:request/checkbox_1">
--
Martijn Pieters
_______________________________________________
Zope maillist - [email protected]
http://mail.zope.org/mailman/listinfo/zope
** No cross posts or HTML encoding! **
(Related lists -
http://mail.zope.org/mailman/listinfo/zope-announce
http://mail.zope.org/mailman/listinfo/zope-dev )