mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-30 14:31:36 +00:00
8 lines
140 B
HTML
8 lines
140 B
HTML
{%- if !cond -%}
|
|
!cond
|
|
{%- else if let Ok(ok) = value -%}
|
|
{{ ok }}
|
|
{%- else if let Err(err) = value -%}
|
|
{{ err }}
|
|
{%- endif -%}
|