{# SPDX-FileCopyrightText: © 2020 Open Networking Foundation SPDX-License-Identifier: Apache-2.0 #} {% extends "base.html" %} {% block title %}ONF Continuous Certification - {{ project_name }}{% endblock %} {% block header %}ONF Continuous Certification - {{ project_name }}{% endblock %} {% block content %}

Test Results

{% for product in products | sort(attribute="product_name")%} {{ product.product_name }} {% set groups = product['groups'] %}
{% for group_name, jobs in groups.items() %} Version: {{ group_name }}
{% for job_name, builds in jobs.items() %} Job: {{ job_name }}
{% set timebox = builds | timebox(24,10) %} {% endfor %} {% else %} No Tests Currently Available {% endfor %}

{% endfor %} {% endblock %}