** it would be great if we could show events pending approval on the grid **
The following line from the calendar.pl file's sub getEvents {
subroutine is responsible for leaving them out of the events shown.
Just comment that line out out and they should be visible.
next unless ($event_details->{$s->{'event_id'}}->{'approved'});
** preferably in a different colour/font **
You would have to set up some conditional in the template similar to:
if (!$EVENT->{'details'}->{'approved'} )
{
do something here;
}
NOTE: Pseudo code only, not working code!
Dan O.
[This message has been edited by DanO (edited May 17, 2003).]