{% extends "base.html" %} {% block nav_compare %}active{% endblock %} {% block js %} {% endblock %}{% block content %}
Show whole run | Show whole run |
{% 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 %}
|