1 Oct
2000
1 Oct
'00
12:48 p.m.
Hi,
... I want to display only those jobs for which the current date is on or after the 'date_posted' and on or before 'offer_expires'. I've tried a bunch of things, but haven't hit upon the winning answer. Any takers?
Try <dtml-in "objectValues('Jobs')" sort="date_posted"> <dtml-if "offer_expires.isFuture()"> <dtml-if "date_posted.isPast()"> Job: <dtml-var title> <br> </dtml-if> </dtml-if> </dtml-in> Seb.