** But I couldn't see a way to do that on the next page (where you schedule the times) because it looks to be all Perl on that page, **
The event is scheduled using either the schedule_event_non_recur.html or schedule_event_recurring.html admin template files.
While there is a lot of Perl code on the page, it is not all Perl. Just about everything after the line
<TABLE WIDTH="500" BORDER="0" CELLSPACING="0" CELLPADDING="2">
is HTML code with just Perl variables in it.
** I don't know if I can insert any HTML **
Sure you can.
** or where to put it if I did **
Where to put it would depend on where you want it to display. Look for telltale signs in the template like:
<BODY BGCOLOR="<%=$AdminConfig->get("page-background-color")%>">
Which would be the very start of the visable page.
<CENTER>
<!--#include file="_command_list.html" -->
Which inserts the drop down menu
<TD ALIGN="right"><B>Start Time: </B></TD>
Which is just before where the event's start time gets entered.
<TD ALIGN="center"><INPUT TYPE="button" CLASS="button" VALUE="Save" onClick="dosubmit()"></TD>
Where the [ Save ] button is printed. Etc. etc. etc. ...
Try having the template open in a browser while editing it so you can look back and forth between the two to find similarities.
Dan O.
[This message has been edited by DanO (edited March 11, 2004).]