diff options
| author | Tim Graham <timograham@gmail.com> | 2014-01-16 07:07:53 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-01-16 07:09:15 -0500 |
| commit | f8d93f2c71f5a6dff349ec290f9ca6d7d316ba4f (patch) | |
| tree | f617152e001dd1f0c6393bff8886004cc76805ec /docs | |
| parent | deefdc8e600e80da8b6d17d0a02f142a26f1a599 (diff) | |
[1.6.x] Fixed #21747 -- Added {% elif %} to template topics guide.
Thanks gcc for the suggestion.
Backport of 9e5033b302 from master
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/templates.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/docs/topics/templates.txt b/docs/topics/templates.txt index 732145a7ca..2856664f80 100644 --- a/docs/topics/templates.txt +++ b/docs/topics/templates.txt @@ -211,18 +211,23 @@ tags: {% endfor %} </ul> -:ttag:`if` and ``else`` +:ttag:`if`, ``elif``, and ``else`` Evaluates a variable, and if that variable is "true" the contents of the block are displayed:: {% if athlete_list %} Number of athletes: {{ athlete_list|length }} + {% elif athlete_in_locker_room_list %} + Athletes should be out of the locker room soon! {% else %} No athletes. {% endif %} In the above, if ``athlete_list`` is not empty, the number of athletes - will be displayed by the ``{{ athlete_list|length }}`` variable. + will be displayed by the ``{{ athlete_list|length }}`` variable. Otherwise, + if ``athlete_in_locker_room_list`` is not empty, the message "Athletes + should be out..." will be displayed. If both lists are empty, + "No athletes." will be displayed. You can also use filters and various operators in the :ttag:`if` tag:: |
