Employee (Custom Templates)
The following are available attributes. Select the link to navigate directly to that attribute:
- Active
 - Address
 - Can Login
 - Cell Phone
 - City
 - Email Address
 - Employee Number
 - Home Phone
 - Name
 - Notification Email Address
 - Notification Mobile Number
 - Notify via Email
 - Notify via Mobile
 - Postal Code
 - Pricing Visibility
 - Role
 - State
 - Username
 
Active
employee.active
Returns true if the employee is set to active in Manage Users. Returns false if the employee is set to inactive.
Input
{% if employee.active %}
This employee is active!
{% else %}
This employee is inactive!
{% endif %}
Address
employee.address
Returns the address of the employee.
Can Login
employee.can_login
Returns true if the employee has login access as set in Manage Users.
Input
{% if employee.can_login %}
This employee can login!
{% else %}
This employee can't login!
{% endif %}
Cell Phone
employee.cell_phone
Returns the cell phone number of the employee.
City
employee.city
Returns the city of the employee.
Email Address
employee.email_address
Returns the email address of the employee.
Employee Number
employee.employee_number
Returns the unique identifying number of the employee.
Home Phone
employee.home_phone
Returns the home phone number of the employee.
Name
employee.name
Returns the name of the employee.
Notification Email Address
employee.notification_email_address
Returns the notification email address of the employee.
Notification Mobile Number
employee.notification_mobile_number
Returns the notification mobile number of the employee.
Notify via Email
employee.notify_via_email
Returns true if employee email notifications are on. Returns false if employee email notifications are off.
Input
{% if employee.notify_via_email %}
This employee receives email notifications.
{% else %}
This employee doesn't receive email notifications.
{% endif %}
Notify via Mobile
employee.notify_via_mobile
Returns true if employee mobile notifications are on. Returns false if employee mobile notifications are off.
Input
{% if employee.notify_via_mobile %}
This employee receives mobile notifications.
{% else %}
This employee doesn't receive mobile notifications.
{% endif %}
Postal Code
employee.zip_code
Returns the postal code of the employee.
Pricing Visibility
employee.hide_pricing
Returns true if Pricing Visibility is set to Hide Pricing in Manage Users. Returns false if Pricing Visibility is set to Show Pricing.
Input
{% if employee.hide_pricing %}
This employee can't see the prices!
{% else %}
This employee can see the pricing!
{% endif %}
Role
employee.limit_access_to_assignments
Returns true if the employee’s Role is set to Technician in Manage Users. Returns false if the employee’s Role is set to Staff in Manage Users.
Input
{% if employee.limit_access_to_assignments %}
This employee is a Technician!
{% else %}
This employee is Staff!
{% endif %}
State
employee.state
Returns the state of the employee.
Username
employee.username
Returns the username of the employee.