Skip to content

Elements

TemplateTo comes with a number of elements designed to speed up the creation of templates.

Elements fall into 4 categories.

Item Description
Layout These elements allow you to more easily compose complex document layouts
Basic These elements include Text, Image and header elements, these are easy to work with and usually content focused
Advanced Use advanced elements if you are comfortable with custom code
Logic Logic components allow you to show or hide sections of your template based on data based to your template at point of generation

Layout elements

Layout elements

Item Description
1 Column This provides a single column layout
2 Column, 50/50 Two columns initial set to 50% width each. Adjust the width with the anchor points
3 Column A Three column layout with each column set to 33% width. Widths also adjustable
2 Column, 20/80 Another two column layout, this time with an 20/80 split. Widths also adjustable

Tip

You can nest layouts within one another.

Video: Working with layouts

Basic elements

Basic elements

Item Description
Text Simple WYSIWYG text element
Image Add images to your template
Content Block Content blocks are reusable content. See more details.
Page Break Add a Page Break to your template
Header Simply adds a heading section
Table Add a table to the editor

Text

This element puts a WYSIWYG editor onto your template, you can style the text within the element using the tools in the Editor window

Image

Add images to your template with this element. Either drag images into the upload area of navigate to your image.

Adding an image

Content Blocks

Content Blocks are reusable content that can be used in multiple templates.

Info

These are like mini-templates. You can use a lot of the same components we are discussing here within the content block

Go to the Content Block area of the admin to create Content Blocks.

Page Break

As you would expect in word or any other text editing software, this breaks the content that comes after onto a new page.

Example page with a Page Break

  1. A Page Break element fills the remaining space on the page. As you change content above the size of the Page Break element will adjust so you can see how much space is left.
  2. This text will be on the next page (page 2 in this example).

The header element adds a heading to the template, you can use the custom header menu to change the heading.

Example Header with menu

  1. Custom Header editor bar.

Table

The table element, as you might expect, allows you to add a table to your template.

Table settings

Table elements have settings you can change from the properties panel: Table settings panel

Table row options

Selecting a row

The simplest way to select the table row is to click on a cell within the row you want to select, then use the up arrow on the cells toolbar to navigate up to the row. The row toolbar can be seen below. It is possible that when you click on a cell you initially select a component within the cell, this will require one additional click of an up arrow to arrive at the row toolbar. Once you are presented with the toolbar below, you have arrived.

Row toolbar

The right most icon (downwards pointing arrow) allows you to select an array of data to repeat that row for.

Clicking this option opens a modal within which you can select an array of data (For this example I selected lineItems, as in the example json below).

array item selection modal

Example
{
    "invoiceNumber": "123456",
    "date": "2024-01-07",
    "billingAddress": {
        "name": "John Doe",
        "street": "123 Apple St",
        "city": "New York",
        "state": "NY",
        "zip": "10001"
    },
    "shippingAddress": {
        "name": "John Doe",
        "street": "123 Apple St",
        "city": "New York",
        "state": "NY",
        "zip": "10001"
    },
    "lineItems": [
        {
        "item": "Laptop",
        "description": "15-inch, 1TB SSD, 16GB RAM",
        "quantity": 1,
        "unitPrice": 1200.00,
        "total": 1200.00
        },
        {
        "item": "Wireless Mouse",
        "description": "Bluetooth, Ergonomic Design",
        "quantity": 2,
        "unitPrice": 35.50,
        "total": 71.00
        },
        {
        "item": "USB-C Adapter",
        "description": "4K HDMI, USB 3.0, Ethernet",
        "quantity": 1,
        "unitPrice": 45.99,
        "total": 45.99
        }
    ],
    "subTotal": 1316.99,
    "tax": 118.53,
    "shippingCost": 15.00,
    "total": 1450.52,
    "notes": "Thank you for your business!"
}

I can add the data to the row using an underscore followed by the property name as it appears in the JSON.

Example table with data

In this example we have added the item, description and total properties from the array to the repeating row. When this is rendered with the example data above it results in the following

Example repeating row output

Table cell options

Working with tables

The video shows how to work with some of the table cell option to add column and rows as well as merging and unmerging cells.

Cell column menu

cell column options

Cell row menu

cell row options

Merging and un-merging cells

To merge cells use the appropriate option from the cell menus above.

To un-merge cells, click on the a merged cell, there is an additional option on the cell toolbar now, it looks like four blocks (see below).

The un-merge toolbar button

Advanced elements

Advanced elements selection

HTML

To add some custom HTML to your template simply click or drag this element into the editor. Double click to open, you can add your html within the editor window.

Warning

If script tags are entered the custom html wont be saved. We currently don't support running script tags within a template.

Logic

Logic elements

Condition

Note

It might be helpful to have data added to your template when working with the Condition element. Learn more here

The condition element allows you to show a section only when specified conditions are met.

The following conditions are available:

Logical conditions available

The following clip shows how to work with the condition element.

Example working with Condition element

Note

You can put any content you want within a condition element. Which makes them very powerful.