# Panel (templater)
Display html template
# Description
Templater panel renders defined latte template into html. On how to use latte Latte docs (opens new window).
Templater has access to all processing variables.
# Screenshots
# Config
templater:
config:
# Required | Type: string | Default: null
# Template which should be displayed
template: """
Our customer: {$customer}
{foreach [1,2,3] as $a}
This is {$a}{sep}<br>{/sep}
{/}
"""
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12