{% extends "dashboard_app/_content.html" %} {% load call %} {% load i18n %} {% block extrahead %} {{ block.super }} {% endblock %} {% block content %}

Test history for image {{ image_health.rootfs_type }} + {{ image_health.hwpack_type }}

{% with image_health.get_recent_test_runs as recent_test_run_list %} {% if recent_test_run_list %}
{% regroup recent_test_run_list by analyzer_assigned_date|date:"Y-m-d" as test_run_cluster_list %} {% for test_run_cluster in test_run_cluster_list %} {% for test_run in test_run_cluster.list %} {% with test_run.denormalization as denormalization %} {% endwith %} {% endfor %} {% endfor %}
Tests ran on {{ test_run_cluster.grouper }} Pass Fail Skip Unknown
{{ test_run.test }} {% spaceless %}
{% endspaceless %}
{{ denormalization.count_pass }} {{ denormalization.count_fail }} {{ denormalization.count_skip }} {{ denormalization.count_unknown }}
{% else %}

This combination of of root file system + hwardware pack was not tested in the last 14 days

{% endif %} {% endwith %} {% endblock %}