7.3 KiB
7.3 KiB
Table of Contents
dictionaries/rougail/00-base.yml
---
version: '1.1'
condition: no # a condition
var1:
description: a first variable
hidden:
type: jinja
jinja: |
{% if _.condition != "yes" %}
condition is yes
{% endif %}
description: if condition is yes
default:
type: jinja
jinja: |
{{ _.condition }}
description: the value of condition
var2:
description: a second variable
hidden:
type: jinja
jinja: |
{% if rougail.condition != "yes" %}
condition is yes
{% endif %}
description: if condition is yes
default:
type: jinja
jinja: |
{{ rougail.condition }}
description: the value of condition
Variables for "rougail"
Variable | Description |
---|---|
rougail.conditionstring standard mandatory |
A condition. Default: no |
rougail.var1string standard mandatory hidden |
A first variable. Default: the value of condition. Hidden: if condition is yes. |
rougail.var2string standard mandatory hidden |
A second variable. Default: the value of condition. Hidden: if condition is yes. |
Example with all variables modifiable
---
rougail:
condition: no
var1: no
var2: no