diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-01-11 19:20:00 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-01-11 19:20:00 +0100 |
commit | 21e0db42ec2d907fc28cccfa1d22e4a2a4979572 (patch) | |
tree | 813441481f33bdfc1a11c8e400a3fc954217da1d | |
parent | 07f4d6c76d60fd0ca32d9f4e4c7e52042ee46e8f (diff) | |
download | askama-21e0db42ec2d907fc28cccfa1d22e4a2a4979572.tar.gz askama-21e0db42ec2d907fc28cccfa1d22e4a2a4979572.tar.bz2 askama-21e0db42ec2d907fc28cccfa1d22e4a2a4979572.zip |
Add template source code for elif test case
-rw-r--r-- | testing/templates/elif.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testing/templates/elif.html b/testing/templates/elif.html new file mode 100644 index 0000000..ad0cbae --- /dev/null +++ b/testing/templates/elif.html @@ -0,0 +1 @@ +{% if cond %}true{% elif check %}checked{% else %}false{% endif %} |