Yes, it has a slight name change.
Try
The names have been changed to protect the innocent! Its a demo site based upon our internal system. Its not finished by any means - but it does work!
The calendar is in the Admin section under the Client -> Project edit page.
You may like the Client Costing report near the bottom of the admin menu - the Export to Excel is quite neat.. If you pump out a standard HTML table - but give the page a content type of application/x-msexcel, like this:
Response.buffer = true;
Response.ContentType="application/x-msexcel";
Response.AddHeader ("Content-Disposition", "attachment; filename=" + sFilename + ".xls" );
...build a grid...
Response.end
This functionality can be added to the DATAGRID.ASP.
AND, I have amended the DATAGRID.ASP to compute sub-totals and groups (where the wording only appears in the top column of a group).
You can see this in the Holiday and other.. Report, also in the admin menu.
(Content Management)