insertTimeForm ?>

timesheet->currentMonthText ?> timesheet->currentYear ?>

timesheet->entries) > 0) { echo "
Date
Time In (Adjusted)
Time Out (Adjusted)
Less Time
Time Worked
Time Code

"; foreach($this->timesheet->entries as $entry) { echo "
"; if($this->timesheet->getBatch() == $entry->batchId) { echo " link(array('timesheet','edit',$entry->id))."\">".$entry->date.""; } else { echo " ".$entry->date." "; } echo "
inTime."\">".$entry->roundedInTime."
outTime."\">".$entry->roundedOutTime."
".$entry->lessTime." Min.
".$entry->timeWorked." Hours
".$entry->codeName."

"; } } else { echo "
No time submitted.
"; } ?>

Totals for this month

Total hours: timesheet->normalWorked ?>
Vacation used: timesheet->vacationUsed ?>
Sick used: timesheet->sickUsed ?>