** I've added calendar fields **
You added event fields or fields to the user database?
** I tried to alter the approve.html page in the Admin section **
What code did you try?
If you added the new field to the event database, in the approve.html template where there are lines of code like:
<B>Title: </B><%=$title%><BR>
<B>Description: </B><%=$desc%><BR>
<B>Author: </B><%=$author%><BR>
<B>ID: </B><%= $id%><BR>
<B>Schedule: </B><%= &Event::getScheduleDescription($e->{'schedule'}) %><BR>
You would have to add something like
<B>Contact: </B><%= $e->{'details'}->{'Field_Key'} %><BR>
where Field_Key is the key of the event field you wanted printed there.
Dan O.
------------------