[Zope] Render the number of occurrence in a batch

Kapil Thangavelu kthangavelu@earthlink.net
Fri, 01 Sep 2000 03:19:07 -0700


Francois-Regis CHALAOUX wrote:
> 
> Hi,
> 
> How to render the total number of result coming from the search in a ZCatalog
> even if the batch will be render in several sequences ?
> 
> Howto render XXXX : "Your search contain XXXX results"
> 
> FR.
> 
> 

<dtml-var "_.len(YOURSEQUENCEGENERATOR)">


<dtml-in "YOURSEQUENCEGENERATOR">

</dtml-in>


Kapil