diff options
author | 2021-06-29 15:23:26 +0200 | |
---|---|---|
committer | 2021-07-01 10:24:32 +0200 | |
commit | 83b03cd485694483df4b435979b7a3184a208e48 (patch) | |
tree | d1cf22241555e2f674e28af7e66ad43854c2ccb4 /testing/templates/if-let-struct.html | |
parent | 06d2eee4a0cd9070444d9d166044de9ffe6ca330 (diff) | |
download | askama-83b03cd485694483df4b435979b7a3184a208e48.tar.gz askama-83b03cd485694483df4b435979b7a3184a208e48.tar.bz2 askama-83b03cd485694483df4b435979b7a3184a208e48.zip |
Add "if let" tests
Diffstat (limited to '')
-rw-r--r-- | testing/templates/if-let-struct.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testing/templates/if-let-struct.html b/testing/templates/if-let-struct.html new file mode 100644 index 0000000..53232f7 --- /dev/null +++ b/testing/templates/if-let-struct.html @@ -0,0 +1 @@ +{% if let Digits { one, two, three } = digits %}{{ one }} {{ two }} {{ three }}{% endif %} |