mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-27 13:00:57 +00:00
49 lines
512 B
HTML
49 lines
512 B
HTML
{% if a == b -%}
|
|
t
|
|
{%- endif -%}
|
|
{% if a == c -%}
|
|
t
|
|
{%- else -%}
|
|
f
|
|
{%- endif %}
|
|
{% if a != c -%}
|
|
t
|
|
{%- endif %}
|
|
{%- if a != b -%}
|
|
t
|
|
{%- else -%}
|
|
f
|
|
{%- endif %}
|
|
{% if c >= b -%}
|
|
t
|
|
{%- endif -%}
|
|
{% if b >= c -%}
|
|
t
|
|
{%- else -%}
|
|
f
|
|
{%- endif %}
|
|
{% if c > b -%}
|
|
t
|
|
{%- endif -%}
|
|
{% if a > c -%}
|
|
t
|
|
{%- else -%}
|
|
f
|
|
{%- endif %}
|
|
{% if a <= b -%}
|
|
t
|
|
{%- endif -%}
|
|
{% if c <= b -%}
|
|
t
|
|
{%- else -%}
|
|
f
|
|
{%- endif %}
|
|
{% if a < c -%}
|
|
t
|
|
{%- endif %}
|
|
{%- if a < b -%}
|
|
t
|
|
{%- else -%}
|
|
f
|
|
{%- endif %}
|