Skip to content

Commit

Permalink
Document if statement with multiple conditions (fr). refs #1284
Browse files Browse the repository at this point in the history
  • Loading branch information
fdintino committed Jul 13, 2020
1 parent 7ddd747 commit 85918ef
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/fr/templating.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,17 @@ et `else` :
{% endif %}
```

Les mots-clefs "and" et "or" correspondent respectivement aux expressions
logiques `&&` et `||`.

```jinja
{% if faim and fatigue %}
J'ai faim et je suis fatigué. Les deux sont vrais.
{% elif faim or fatigue %}
J'ai faim ou je suis fatigué. L'un ou l'autre est vrai.
{% endif %}
```

Vous pouvez également utiliser `if` comme une [expression en ligne](#expression-if).

### for
Expand Down

0 comments on commit 85918ef

Please sign in to comment.