Fixed firstof docs error introduced in 1ea44a; refs #17906.

This commit is contained in:
Ralph Broenink 2014-10-21 14:07:32 +02:00 committed by Tim Graham
parent f0bb3c98cc
commit 3a34e45fdb
1 changed files with 3 additions and 3 deletions

View File

@ -263,11 +263,11 @@ Sample usage::
This is equivalent to::
{% if var1 %}
{{ var1|safe }}
{{ var1 }}
{% elif var2 %}
{{ var2|safe }}
{{ var2 }}
{% elif var3 %}
{{ var3|safe }}
{{ var3 }}
{% endif %}
You can also use a literal string as a fallback value in case all