aboutsummaryrefslogtreecommitdiffstats
path: root/testing/templates/match-opt.html
blob: c77a2a68e7f49a914005d3778bf526a0e2bb5d2e (plain) (blame)
1
2
3
4
5
6
7
8
{% match item %}
{% when Some with ("foo") %}
Found literal foo
{% when Some with (val) %}
Found {{val}}
{% when None %}
Not Found
{% endmatch %}