diff --git a/source/_docs/blueprint/selectors.markdown b/source/_docs/blueprint/selectors.markdown index 77aab245e9f..016b769b6b9 100644 --- a/source/_docs/blueprint/selectors.markdown +++ b/source/_docs/blueprint/selectors.markdown @@ -931,6 +931,21 @@ target: model: TRADFRI remote control ``` +## Template selector + +The template selector can be used to input a Jinja2 template. This is useful +for allowing more advanced user-input that use Jinja2 templates. + +![Screenshot of an template selector](/images/blueprints/selector-template.png) + +This selector does not have any other options; therefore, it only has its key. + +```yaml +template: +``` + +The output of this selector is a template string. + ## Text selector The text selector can be used to input a text string. The value of the input will contain the selected text. diff --git a/source/images/blueprints/selector-template.png b/source/images/blueprints/selector-template.png new file mode 100644 index 00000000000..5e6e7d84c41 Binary files /dev/null and b/source/images/blueprints/selector-template.png differ