Time Entry (Custom Templates)
The following are available attributes. Select the link to navigate directly to that attribute:
Created On
time_entry.created_on
Returns the date the time entry was created.
Input
#{{ time_entry.created_on | date: "%D" }}
Output
04/22/14
Employee
time_entry.employee
Returns the employee associated with the time entry. The object returned is an employee
object and must be used in combination with any of the employee
attributes, as in the example below. See our Employee (Custom Templates) article for a full list of available attributes.
Input
#{{ time_entry.employee.name }}
#{{ time_entry.employee.email_address }}
Output
Bart Simpson
Hours
time_entry.number_of_hours
Returns the number of hours recorded for the time entry.
Note
time_entry.note
Returns the note, if any, for the time entry.
Started On
time_entry.started_on
Returns the date the time entry began.
Input
#{{ time_entry.started_on | date: "%D" }}
Output
04/22/14