diff options
-rw-r--r-- | testing/templates/compare.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/testing/templates/compare.html b/testing/templates/compare.html new file mode 100644 index 0000000..ea22546 --- /dev/null +++ b/testing/templates/compare.html @@ -0,0 +1,48 @@ +{% 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 %} |