Account (Custom Templates)
The following are available attributes. Select the link to navigate directly to that attribute:
- Billing Address
 - Billing City
 - Billing Country
 - Billing Phone Number
 - Billing State
 - Billing Zip Code
 - Company Name
 - Company Information
 - Estimate Default Notes
 - Estimate Default Terms
 - Invoice Default Notes
 - Invoice Default Terms
 - Logo
 - Subdomain
 - Work Order Footer
 - Work Order Pricing
 
Billing Address
account.account_details.billing_address
Returns the billing address for the account.
Billing City
account.account_details.billing_city
Returns the billing city for the account.
Billing Country
account.account_details.billing_country
Returns the billing country of the account.
Billing Phone Number
account.account_details.billing_phone_number
Returns the billing phone number of the account.
Billing State
account.account_details.billing_state
Returns the billing state of the account.
Billing Zip Code
account.account_details.billing_zip_code
Returns the billing postal code of the account.
Company Name
account.company_name
Returns the company name associated with the account.
Company Information
{{ account.account_details.company_identifier }}
Where you can put a license number, certification string, etc. Settings —> Company Information is where it's entered. This will return this information in a template.
Estimate Default Notes
account.account_details.estimate_default_notes
Returns the default estimate notes for the account, as defined in the Document Settings.
Estimate Default Terms
account.account_details.estimate_default_terms
Returns the default estimate terms for the account, as defined in the Document Settings.
Invoice Default Notes
account.account_details.invoice_default_notes
Returns the default invoice notes for the account, as defined in the Document Settings.
Invoice Default Terms
account.account_details.invoice_default_terms
Returns the default invoice terms for the account, as defined in the Document Settings.
Logo
account.logo
Returns an image tag for the account’s logo.
Input
#{{ account.logo }}
Subdomain
account.subdomain
Returns the subdomain of the account.
Work Order Footer
account.account_details.work_order_footer
Returns the plain HTML custom work order footer, as defined in the Document Settings.
Work Order Pricing
account.account_details.work_order_pricing
Returns true if Show Pricing is checked on the Work Order Document Settings. Can be used to hide or show pricing throughout a document. Defaults to true.
Input
{% if account.account_details.work_order_pricing %}
Show the pricing in here!
{% endif %}