{% 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.test_results.all.order_by as all_results %} {% endfor %} {% endfor %}
Tests ran on {{ test_run_cluster.grouper }}
{{ test_run.test }} {{ all_results.count }} {% spaceless %} {% regroup all_results|dictsort:"result" by result as result_group_list %} {% for result_group in result_group_list %} {% if result_group.list|length > 300 %}
...
{% else %}
{% endif %} {% endfor %} {% endspaceless %} {% endwith %}
{% else %}

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

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