> Zopists: > > > <!--#if "date==appointment_date"--> > <!--#var foo--> > <!--#/if--> > If date refers to 'now' you can do <!--#if "appointment_date.isCurrentHour()"--> <!--# var spam--> <!--# /if--> If you want to compare two arbitrary datetime objects to the day then: <!--#if "appointment_date.dayOfYear()==date.dayOfYear()"--> <!--# var spam--> <!--# /if--> both untested Pavlos