add list to example of verbose syntax

This commit is contained in:
John Spaetzel 2020-08-25 17:29:47 -07:00
parent 1dca22662c
commit 740084419c
No known key found for this signature in database
GPG Key ID: 0F11E952F7720434

View File

@ -193,15 +193,23 @@ If you want to use other Controls in a form specified using the above (verbose)
{% raw %}
```yaml
- trigger: ":form"
replace: "Hey {{form1.name}}, how are you?"
replace: "Hey {{form1.name}}, how are you? Do you like {{form1.fruit}}?"
vars:
- name: "form1"
type: form
params:
layout: "Hey {{name}}, how are you?"
layout: "Name: {{name}} \n
Fruit: {{fruit}}"
fields:
name:
multiline: true
fruit:
type: list # or `choice`
values:
- Apples
- Bananas
- Oranges
- Peaches
```
{% endraw %}