{% extends 'layout.html' %} {% import 'macros/comparisons_progress_bar.html' as macros %} {% set tab = 'comparisons' %} {% set show_project_nav = true %} {% block title %}Comparing {{ test_list_name }}{% endblock %} {% block body %}

Results

{% if comparison_info.right_timestamp %} {{ comparison_info.right_name }}: {% else %} {{ comparison_info.right_name }} {% endif %}
{% if comparison_info.right_model %} {{ comparison_info.right_model }} {% endif %}
{{ comparison_info.prefer_right_count }}
{% if comparison_info.left_timestamp %} {{ comparison_info.left_name }}: {% else %} {{ comparison_info.left_name }} {% endif %}
{% if comparison_info.left_model %} {{ comparison_info.left_model }} {% endif %}
{{ comparison_info.prefer_left_count }}
Neutral
{{ comparison_info.tied_count }}
{{ macros.comparison_progress_bar(comparison_info) }}

Comparing results for Test List: {{ test_list_name }}

{% for test_case_info in test_case_infos %} {% endfor %}
Test case Result
{% for key, value in test_case_info.inputs.items() %} {{ key }} {{ value }} {% endfor %}
{% if test_case_info.result_timestamp %} {{ test_case_info.result }}: {% else %} {{ test_case_info.result }} {% endif %}
{% endblock %}