2024-07-10 21:27:48 +02:00
---
gitea: none
include_toc: true
---
# 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
2024-11-06 17:39:13 +01:00
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **bool** < br /> [`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A boolean variable.< br /> **Défaut**: False |
| **multi1** < br /> [`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | A first multi variable.< br /> **Défaut**: a calculation. |
| **multi2** < br /> [`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | A second multi variable.< br /> **Défaut**: a calculation. |
2024-07-10 21:27:48 +02:00