diff options
Diffstat (limited to 'testing/templates')
-rw-r--r-- | testing/templates/comparison.html | 54 |
1 files changed, 48 insertions, 6 deletions
diff --git a/testing/templates/comparison.html b/testing/templates/comparison.html index 87aaec3..71a4a7b 100644 --- a/testing/templates/comparison.html +++ b/testing/templates/comparison.html @@ -1,6 +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 %} +{% 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 %} |