askama/testing/templates/match-opt.html
2017-11-02 14:58:46 +01:00

9 lines
146 B
HTML

{% match item %}
{% when Some with ("foo") %}
Found literal foo
{% when Some with (val) %}
Found {{val}}
{% when None %}
Not Found
{% endmatch %}