mirror of
https://github.com/askama-rs/askama.git
synced 2026-01-03 23:32:20 +00:00
9 lines
150 B
HTML
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 %}
|