[3.0.x] Fixed #31024 -- Clarified {% firstof %} tag's handling of arguments.

Backport of d646e3d14f from master
This commit is contained in:
Uttam Kini 2019-12-02 20:53:42 +05:30 committed by Mariusz Felisiak
parent cc64b1d8f3
commit 84936ac2c5
1 changed files with 3 additions and 2 deletions

View File

@ -261,8 +261,9 @@ Sample usage::
``firstof``
-----------
Outputs the first argument variable that is not ``False``. Outputs nothing if
all the passed variables are ``False``.
Outputs the first argument variable that is not "false" (i.e. exists, is not
empty, is not a false boolean value, and is not a zero numeric value). Outputs
nothing if all the passed variables are "false".
Sample usage::