insertTimeForm ?>

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

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

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

Totals for this month

Normal: timesheet->normalWorked ?>
Vacation: timesheet->vacationUsed ?>
Sick: timesheet->sickUsed ?>
Total: timesheet->sickUsed ?>