{% extends "base.html" %} {% block nav_compare %}active{% endblock %} {% block js %} {% endblock %}{% block content %} {% if diff %} {% for d in diff %} {% endfor %} {% else %} {% endif %}
{{ form.left_result }} {{ form.right_result }}
{% if d.left %}
{{ d.left.display_state }}
{{ d.left.test.title }}
{% include "compare/two-expand.html" with tr=d.left %} {% endif %}
{% if d.right %}
{{ d.right.display_state }}
{{ d.right.test.title }}
{% include "compare/two-expand.html" with tr=d.right %} {% endif %}
{% if diff|length == 0 %}
Results match.
{% else %}
Please, select two runs and those will be compared.
{% endif %}
{% endblock %}