diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 51ef03c..16f1820 100644
|
a
|
b
|
displayed by the ``{{ athlete_list|length }}`` variable.
|
| 313 | 313 | As you can see, the ``if`` tag can take an optional ``{% else %}`` clause that |
| 314 | 314 | will be displayed if the test fails. |
| 315 | 315 | |
| | 316 | .. versionadded:: 1.2 |
| | 317 | |
| | 318 | If you have multiple conditions to check against, you may wish to use |
| | 319 | the ``elif`` tag:: |
| | 320 | |
| | 321 | {% if athlete_list %} |
| | 322 | Number of athletes: {{ athlete_list|length }} |
| | 323 | {% elif athletes_in_lockerroom %} |
| | 324 | There are some athletes queued in the locker room, but they |
| | 325 | should be out soon! |
| | 326 | {% else %} |
| | 327 | No athletes. |
| | 328 | {% endif %} |
| | 329 | |
| 316 | 330 | Boolean operators |
| 317 | 331 | ^^^^^^^^^^^^^^^^^ |
| 318 | 332 | |