61 lines
2.2 KiB
Text
61 lines
2.2 KiB
Text
== dictionaries/rougail/00-base.yml
|
|
|
|
[,yaml]
|
|
----
|
|
version: '1.1'
|
|
condition: no # the condition
|
|
var1:
|
|
description: a first variable
|
|
default: no
|
|
hidden:
|
|
type: jinja
|
|
jinja: |
|
|
{% if _.condition == "yes" %}
|
|
condition is yes
|
|
{% endif %}
|
|
description: if condition is yes
|
|
var2:
|
|
description: a second variable
|
|
default: no
|
|
hidden:
|
|
type: jinja
|
|
jinja: |
|
|
{% if rougail.condition == "yes" %}
|
|
condition is yes
|
|
{% endif %}
|
|
description: if condition is yes
|
|
----
|
|
== Variables for "rougail"
|
|
|
|
[cols="119a,119a",options="header"]
|
|
|====
|
|
| Variable | Description
|
|
|
|
|
**rougail.condition** +
|
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
The condition. +
|
|
**Default**: no
|
|
|
|
|
**rougail.var1** +
|
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` _`hidden`_ |
|
|
A first variable. +
|
|
**Default**: no +
|
|
**Hidden**: if condition is yes.
|
|
|
|
|
**rougail.var2** +
|
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` _`hidden`_ |
|
|
A second variable. +
|
|
**Default**: no +
|
|
**Hidden**: if condition is yes.
|
|
|====
|
|
|
|
|
|
== Example with all variables modifiable
|
|
|
|
[,yaml]
|
|
----
|
|
rougail:
|
|
condition: no
|
|
var1: no
|
|
var2: no
|
|
----
|