Event (Custom Templates)
The following are available attributes. Select the link to navigate directly to that attribute:
- Completed At
- Contact
- Created At
- Creator
- Description
- Employees
- Ends At
- Job
- Notification Sent
- Scheduled At
- Type
- Updated At
Completed At
event.completed_at
Returns the date the event was completed.
Input
#{{ event.completed_at | date: "%D" }}
Output
04/22/14
Contact
event.customer
Returns the contact associated with the event. The object returned is a contact
object and must be used in combination with any of the contact
attributes, as in the example below. See our Contact (Custom Templates) article for a full list of available attributes.
Input
#{{ event.customer.name }}#{{ event.customer.email_address }}
Output
Bart Simpson
Created At
event.created_at
Returns the date the event was created.
Input
#{{ event.created_at | date: "%D" }}
Output
04/22/14
Creator
event.creator
Returns the employee that created the event. 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
#{{ event.creator.name }}#{{ event.creator.email_address }}
Output
Bart Simpson
Description
event.name
Returns the description of the event.
Employees
event.employees
Returns an array of all employees associated with an event. See our Employee (Custom Templates) article for a full list of available attributes.
Input
{% for employee in event.employees %} #{{ employee.name }} #{{ employee.email_address }}{% endfor %}
Output
Bart Simpson
Homer Simpson
Ends At
event.ends_at
Returns the date the event ends.
Input
#{{ event.ends_at | date: "%D" }}
Output
04/22/14
Job
event.job
Returns the job the event belongs to. The object returned is a job
object and must be used in combination with any of the job
attributes, as in the example below. See our Job (Custom Templates) article for a full list of available attributes.
Input
#{{ event.job.job_type }}#{{ event.job.description }}
Output
Toilet RepairTake a look at the upstairs toilet. It has been leaking for a good while.
Notification Sent
event.notification_sent
Returns true
if a notification has been sent to the assigned employee.
Scheduled At
event.scheduled_at
Returns the date the event is scheduled.
Input
#{{ event.scheduled_at | date: "%D" }}
Output
04/22/14
Type
event.task_type.name
Returns the event type (Estimate, Work, Reminder).
Updated At
event.updated_at
Returns the date the event was last updated.
Input
#{{ event.updated_at | date: "%D" }}
Output
04/22/14