48 lines
1.9 KiB
Text
48 lines
1.9 KiB
Text
|
== dictionaries/rougail/00-base.yml
|
||
|
|
||
|
[,yaml]
|
||
|
----
|
||
|
version: 1.1
|
||
|
|
||
|
var1:
|
||
|
description: a first variable
|
||
|
default: value
|
||
|
|
||
|
var2:
|
||
|
description: a second variable
|
||
|
disabled:
|
||
|
variable: _.var1
|
||
|
when: value
|
||
|
|
||
|
var3:
|
||
|
description: a third variable
|
||
|
default:
|
||
|
jinja: |
|
||
|
{% if _.var2 is propertyerror %}
|
||
|
value
|
||
|
{% endif %}
|
||
|
----
|
||
|
== Variables pour "rougail"
|
||
|
|
||
|
[cols="110a,110a",options="header"]
|
||
|
|====
|
||
|
| Variable | Description
|
||
|
|
|
||
|
**rougail.var1** +
|
||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||
|
A first variable. +
|
||
|
**Défaut**: value
|
||
|
|
|
||
|
**rougail.var2** +
|
||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` _`désactivé`_ |
|
||
|
A second variable. +
|
||
|
**Désactivé**: when the variable "rougail.var1" has the value "value".
|
||
|
|
|
||
|
**rougail.var3** +
|
||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||
|
A third variable. +
|
||
|
**Défaut**: depends on a calculation.
|
||
|
|====
|
||
|
|
||
|
|