askama/testing/templates/match-opt-bool.html
2021-08-25 19:03:19 +02:00

9 lines
150 B
HTML

{% match item %}
{% when Some with (true) %}
Found Some(true)
{% when Some with (false) %}
Found Some(false)
{% when None %}
Not Found
{% endmatch %}