[Zope] Sorting descending/ascending

Rik Hoekstra rik.hoekstra@inghist.nl
Mon, 27 Mar 2000 09:26:52 +0200


Ken Kinder wrote:
> 
> In a dtml-in, how do I explicitly sort ascendingly or descendingly?
> 

sorting is ascendingly by default (taken that you put a sort in the
dtml-tag, like 
<dtml-in sort=id>)

turning the sort to descending is done by putting in 'reverse', like so
<dtml-in sort=id reverse>

Rik