38 lines
7.1 KiB
Markdown
38 lines
7.1 KiB
Markdown
---
|
|
gitea: none
|
|
include_toc: true
|
|
---
|
|
# dictionaries/rougail/00-base.yml
|
|
|
|
```yaml
|
|
---
|
|
version: '1.1'
|
|
condition: no # the condition
|
|
var1:
|
|
description: a first variable
|
|
default: no
|
|
hidden:
|
|
jinja: |
|
|
{% if _.condition == "yes" %}
|
|
condition is yes
|
|
{% endif %}
|
|
description: if condition is yes
|
|
var2:
|
|
description: a second variable
|
|
default: no
|
|
hidden:
|
|
jinja: |
|
|
{% if rougail.condition == "yes" %}
|
|
condition is yes
|
|
{% endif %}
|
|
description: if condition is yes
|
|
```
|
|
# Variables pour "rougail"
|
|
|
|
| Variable | Description |
|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
| **rougail.condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The condition.<br/>**Défaut**: no |
|
|
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` _`caché`_ | A first variable.<br/>**Défaut**: no<br/>**Caché**: if condition is yes. |
|
|
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` _`caché`_ | A second variable.<br/>**Défaut**: no<br/>**Caché**: if condition is yes. |
|
|
|
|
|