Fixed firstof docs error introduced in 1ea44a; refs #17906.
This commit is contained in:
parent
f0bb3c98cc
commit
3a34e45fdb
|
@ -263,11 +263,11 @@ Sample usage::
|
||||||
This is equivalent to::
|
This is equivalent to::
|
||||||
|
|
||||||
{% if var1 %}
|
{% if var1 %}
|
||||||
{{ var1|safe }}
|
{{ var1 }}
|
||||||
{% elif var2 %}
|
{% elif var2 %}
|
||||||
{{ var2|safe }}
|
{{ var2 }}
|
||||||
{% elif var3 %}
|
{% elif var3 %}
|
||||||
{{ var3|safe }}
|
{{ var3 }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
You can also use a literal string as a fallback value in case all
|
You can also use a literal string as a fallback value in case all
|
||||||
|
|
Loading…
Reference in New Issue