askama/testing/templates/compare.html
2017-02-17 15:44:12 +01:00

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 %}