rougail-output-doc/tests/docs/no_namespace/40_8calculation_boolean.adoc

57 lines
2.2 KiB
Text
Raw Permalink Normal View History

2024-07-10 21:27:48 +02:00
== dictionaries/rougail/00-base.yml
[,yaml]
----
version: '1.1'
bool: false # a boolean variable
multi1:
description: a first multi variable
type: boolean
multi: true
default:
jinja: |
{% if _.bool %}
True
False
{% else %}
False
{% endif %}
description: a calculation
multi2:
description: a second multi variable
type: boolean
multi: true
default:
jinja: |
{% if not _.bool %}
True
False
{% else %}
False
{% endif %}
description: a calculation
----
== Variables
[cols="131a,131a",options="header"]
2024-07-10 21:27:48 +02:00
|====
| Variable | Description
2024-07-10 21:27:48 +02:00
|
**bool** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` |
2024-07-10 21:27:48 +02:00
A boolean variable. +
**Défaut**: False
2024-07-10 21:27:48 +02:00
|
**multi1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` `unique` `multiple` |
2024-07-10 21:27:48 +02:00
A first multi variable. +
**Défaut**: a calculation.
2024-07-10 21:27:48 +02:00
|
**multi2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` `unique` `multiple` |
2024-07-10 21:27:48 +02:00
A second multi variable. +
**Défaut**: a calculation.
2024-07-10 21:27:48 +02:00
|====