{% extends "dashboard_app/_content.html" %} {% load call %} {% block content %} {% for test in image_health.get_tests %} {% call image_health.current_health_for_test test as current_test_health %} {% call image_health.overall_health_for_test test as overall_test_health %} 0 %} {% if current_test_health.pass_count == 0 %} style="background-color: rgba(255, 0, 0, 0.5)" {% else %} style="background-color: rgba(255, 165, 0, 0.5)" {% endif %} {% else %} {% if current_test_health.pass_count > 0 %} style="background-color: rgba(173, 255, 47, 0.5)" {% endif %} {% endif %} > {% endcall %} {% endcall %} {% endfor %}
Test Totals Most Recent Test Run Description
PASS FAIL FAIL rate Test Runs Test Results PASS FAIL FAIL rate Test Results
{{ test.test_id }} {{ overall_test_health.pass_count }} {{ overall_test_health.fail_count }} {{ overall_test_health.fail_percent|default_if_none:0|floatformat }}% {{ overall_test_health.total_run_count }} {{ overall_test_health.total_count }} {{ current_test_health.pass_count|default:0 }} {{ current_test_health.fail_count|default:0 }} {{ current_test_health.fail_percent|default_if_none:0|floatformat }}% {{ current_test_health.total_count|default:0 }} {{ test.name|default:"not set" }}
{% endblock %}