[Zope] How to include a parameter with ZTUtils?

Chris Withers chrisw@nipltd.com
Mon, 29 Jul 2002 13:30:50 +0100


zope wrote:
> <td><a href="zpt" tal:attributes="href
> zpt_delclient?id=result/id">Delete</a></td>

I believe you want:

<td>
<a href="zpt"
    tal:attributes="href python:here.zpt_delclient(id=result.id);">Delete</a>
</td>

cheers,

Chris