Document Builder
Last updated
Last updated
The Document builder gives you all the necessary tools to help you build your document in a PDF format. You can include Document Headers, Text, Images, Tables, Page Breaks, etc.
Docupilot supports a variety of merge fields for you to use in your document builder.
Tokens (Merge Field)
Condition (if-else
& unless-else
)
Loops
Tables
Docupilot supports easy ways to insert Merge fields into your document template. {{ }} button on the toolbar helps you insert the merge fields.
These are simple words embraced in {{}}
. When you provide your custom data, Docupilot will replace these fields with the data. For example {{email}}, {{client_name}}, {{company_name}}.
If you want to group your fields you can use dot(.) while defining the tokens. For example if you want to capture your client's first name & last name, you can write the tokens as {{client.first_name}} and {{client.last_name}}
Choose your preferred template. Upon selection, you'll be able to Preview it. To modify the template, click the "Edit" button.
if-else
& unless-else
)You can use conditional statements to show or hide contents based on your data.
Conditional statements have the following syntax:
{{#if (a == b)}} a and b are same {{else if (c != d)}} c and d are not same {{/if}}
{{#if (count > 3)}} count is greater than 3{{/if}}
{{#if (item in "apple, ball")}} is apple or ball{{/if}}
The syntax can be extended to support more complex use-cases:
{{#if (a == b or a == c)}} a is same as b or c {{/if}}
{{#if (color == "red" or color == "blue")}}this is either red or blue{{/if}}
{{#if (color == "red" and item == "ball")}}this is a red ball{{/if}}
{{#if ((color == "red" and item == "ball") or (color == "blue" and item == "hat"))}}this is either a red ball or a blue hat{{/if}}
{{#if (color in "red, blue")}}this is either red or blue{{/if}
{{#if ("red, blue" contains color)}}this is either red or blue{{/if}}
For example, if you are creating an invoice you want to display PAID if the payment status field is paid, else you want to show UNPAID.
You can use the condition in the following ways
if
Statement.
if-else
Statement.
if-else if-else
Statement.
unless
Statement.
unless-else
Statement.
unless-else unless-else
Statement.
Below are a few examples :
Example | Description |
| if payment_status is not empty or blank. |
| if payment_status equal to paid (case-sensitive). |
| if payment_status not equal to paid (case-sensitive). |
| If price greater than 1000 |
| If price greater than and equal to 1000 |
| If price lesser than 1000 |
| If price lesser than 1000 |
| unless the month is January, February and March |
| unless the payment_status is not zero |
| unless the payment_status is paid |
| unless payment_status is not equal to paid |
| unless price is greater than 1000 |
The syntax forif
statements used without any operators is as follows:
{{#if myToken}}...{{/if}}.
You can use conditional statements to hide sections/lines that do not have a value.
In the above example when the Address is empty, the Address section will be removed.
In the above example when the Address is empty, the Address empty line will be removed to achieve better document formatting.
Lists are used when you want to print a list of items in your document. Docupilot supports three types of loops in document builder.
Simple List
Advanced List
Bulleted List
Numbered List
You can use advanced loop, if you want to print list of items like line items. Think of this as a sub-form with multiple rows in your main form.
Please use bullet insertion buttons from editor's tools pane for Bulleted and Numbered lists to work
A table is similar to an advanced list, but the data will be rendered in a table. For example, if you want to generate a invoice, you may want display a table with all the line items.
name | quantity | price |
{{#each line_items }} | ||
{{ name }} | {{ quantity }} | {{ price }} |
{{/each}} |
You can use IF condition to hide empty tables, you should wrap the entire table inside a IF condition.
name | quantity | price |
{{#each line_items }}{{#if quantity}} | ||
{{ name }} | {{ quantity }} | {{ price }} |
{{/if}}{{/each}} |
If the value for quantity is empty in any row, it will be skipped in the output table.
name | quantity | price |
{{#each line_items }}{{#if (name != "Iphone")}} | ||
{{ name }} | {{ quantity }} | {{ price }} |
{{/if}}{{/each}} |
If the value for name is Iphone in any row, it will be skipped in the output table.
Lookbacks allow you to access parent context within a nested context. For example, you can access a variable that is outside the loop from inside it.
Format: {{../token_name}}
For example, if your input data for generating an invoice contains of CustomerName
, DiscountPercentage
and LineItems
and you want to render DiscountPercentage
against each line item, to access it you need to use {{../DiscountPercentage}} inside the loop {{#each LineItems}} ... {{/each}}
This will be helpful if you want to insert a dynamic image in the document.
Format : {{insert_image image1 width="width" height="height"}}
Order | Name | Description | Mandatory |
1 | width | Image width | No |
2 | height | Image height | No |
Example | Description |
{{insert_image image1 width="300" height="200"}} | Image Width: 300px , Height: 200px |
{{insert_image image1 width="300"}} | The height is automatically adjusted to keep the proportions |
{{insert_image image1 height="300"}} | The width is automatically adjusted to keep the proportions |
The image URL need to be publicly accessible so we can download and insert it in the document.
This will be helpful if you want to insert a dynamic QR code from your data in the document.
Format: {{insert_qr url size="qr_size" margin="qr_margin" color="qr_color(in hex values)"}}
Order | Name | Description | Mandatory |
1 | size | QR Image size | No Default: 100 |
2 | margin | QR Image height (px) | No Default: 4 |
3 | color | Color of the QR | No Default: #000000 |
Example: {{insert_qr url size="100" margin="1"}}
Example: {{insert_qr url size="100"}}
Example: {{insert_qr url margin="7"}}
Example: {{insert_qr url color="0000FF"}}
The color of the QR should be given in hex coding only.
This will be helpful if you want to insert a barcode from your data in the document.
Format: {{insert_barcode name format="barcode_format" bar_width="width" height="height" margin="barcode_margin" color="color" background_color="bg_color" display_value=true/false}}
Order | Name | Description | Mandatory | Default Value |
1 | barcode_format | Barcode formats CODE128 CODE39 | No | CODE128 |
2 | bar_width | The bar_width option is the width of a single bar. | No | 2 |
3 | height | The height of the barcode. | No | 100 |
4 | barcode_margin | Set the space margin around the barcode | No | 10 |
4 | color | Set the color of the bars and the text. | No | #000 |
5 | bg_color | Set the background of the barcode. | No | #fff |
6 | label | Displaying the label below the barcode | No | true |
Example: {{insert_barcode item_name}}
Example: {{insert_barcode name format="CODE39"}}
Example: {{insert_barcode name bar_width="3"}}
Example: {{insert_barcode name format="CODE128" bar_width="2" height="25"}}
Example: {{insert_barcode name format="CODE128" bar_width="2" display_value= false}}
Example: {{insert_barcode name height="50" margin="10"}}
Example: {{insert_barcode name height="50" color="FF0000"}}
This will be helpful if you want to insert Google Maps from your data in the document.
Format: {{insert_map Address width="width" height="height" map_type="maptype"}}
Order | Name | Description | Mandatory | Default Value |
1 | width | Width of the image (px) | No | 600 |
2 | height | Height of the image (px) | No | 300 |
3 | map type | Map types roadmap satellite hybrid terrain | No | roadmap |
4 | Zoom | Zoom into the image | No | 13 |
Example: {{insert_map Location width="500" height="500" map_type="roadmap"}}
Example: {{insert_map Location map_type="roadmap" zoom= "20"}}
Example: {{insert_map Location height="300" zoom= "5"}}
The Grid Helper will render the list input in a grid format, with specified column size.
Syntax: {{#grid items col_size=3}}
{{@item1.title}}{{@item2.title}}{{@item3.title}}
{{/grid}}
Example :
If you want to format your document into multiple pages properly, you can use the page break option. The content after the page break will begin in a new page.
Docupilot supports all Google fonts to help you maintain your branding. Once you finish building your document, you will need to add a small code snippet by clicking on the source button in the document editor. You will need to change the font family accordingly to the choice of your fonts. You can find the font family here https://fonts.google.com/.
Sometimes the document builder will not show the specified font but the document will be generated in the specified font.
Docupilot allows you to adjust the size of the top, bottom, left, right page margins in inches. You can set the margins in preferences -> Advance settings.
The default margin is 0.4 inches on all sides. You can also set it to zero.
You can add comments in the document template to help your future editors. The comments will be removed in the output document.
Comments Syntax : {{!Your comments here}}