Template Language
The Invoiced Template Language is a powerful, easy way to customize the invoices, statements, emails, text messages, and more on Invoiced. Our template language is built on the popular Twig template language with custom extensions designed for the unique requirements of billing.
Invoiced Template Language can be used to generate personalized emails, messages, and documents. In this document you will learn about all of the capabilities and features of the template language.
The most common use of the template language is to output variables. In order to use a variable, the name is wrapped in {{ and }}.
Tags allow you to implement logic within your template, like branching and looping.
Here is an example of an if statement:
Available tags: (click to learn more)
Filters allow you to modify variables before they are output into the document.
Here is an example of a filter that formats the invoice variable as a money amount and output in your document:
Available filters: (click to learn more)
- money - Formats a number as a money amount.
- money_unit_cost - Formats a number as a money amount according to the rules for unit cost.
- number_format_no_round - Formats a number without applying any rounding or modification of decimal.
You can call a functions to generate content. Functions are called by their name followed by parentheses and optional arguments.
For example this will show the maximum of the two values:
Functions can be combined with filters:
Available functions: (click to learn more)
- dump_scope - Dumps all of the variables available within the template in a readable format.
- trans - Translates a string in the customer's locale.
- transchoice - Translates a string in the customer's locale with pluralization rules.