** is it possible for the admin users to see pending events in the calendar view when logged in? **
You'd have to make changes to both the calendar.pl file and the default template but it should be possible. In the calendar.pl file, in the sub getEvents { subroutine, the following line is responsible for weeding them out of the display:
next unless ($event_details->{$s->{'event_id'}}->{'approved'});
You'd then have to make a conditional in the default template to only show them if the Administrator was logged in.
** preferably in a different color **
That would likely be done in the same area as the above conditional.
** so that the admin user could click on one to access the edit/approve/reject window? **
That might be more difficult to do for a specific event but the mod suggested in the previous forum message "Edit Event directly from Event Details" might be able to be used there?
Dan O.
------------------