Chris Withers wrote:
>
> Can someone help me turn:
>
> <td><dtml-var title null=" "></td>
>
> ...into ZPT?
This works:
<td tal:define="title item/title"
tal:content="structure python:title or ' '">Title</td>
...but I feel a bit sick now.
Can anyone suggest something nicer or should I start sleeping with my sister?
Chris