Skip to content
glossary / TimeEntry

TimeEntry

Django Model: core.TimeEntry

The model recording hours for a given Resource, Day and (optional) Task. It is the persistent storage for DayEntry and Task entries

Fields

  • date: The date of the entry.
  • last_modified: When the entry was last modified.
  • day_shift_hours: Hours worked during the day.
  • sick_hours: Hours of sick leave.
  • holiday_hours: Hours of holiday leave.
  • leave_hours: Hours of general leave.
  • special_leave_hours: Hours of special leave.
  • special_leave_reason: The reason for special leave.
  • night_shift_hours: Hours worked during the night.
  • on_call_hours: Hours on call.
  • travel_hours: Hours spent traveling.
  • rest_hours: Hours of rest.
  • comment: A comment on the entry.
  • timesheet: The timesheet this entry belongs to.
  • resource: The Resource this entry belongs to
  • task: The Task this entry is for (if any).