blob: 27fecbddb6990585c036d2a0a8eefcc1f86c65a5 [file] [log] [blame]
Zack Williams712caf62020-04-28 13:37:41 -07001{#
2SPDX-FileCopyrightText: &copy; 2020 Open Networking Foundation <support@opennetworking.org>
3SPDX-License-Identifier: Apache-2.0
4#}
5{% extends "base.html" %}
6{% block title %}ONF Continuous Certification - {{ product_name }}{% endblock %}
7{% block header %}ONF Continuous Certification - {{ product_name }}{% endblock %}
8{% block content %}
9
10<p>
11<em>Certification Program:</em> {{ onf_project }}<br/>
12<em>Product Name:</em> <a href="{{ product_link }}">{{ product_name }}</a>
13</p>
14
15<div class="ccresults">
16{% for group_name, jobs in groups.items() %}
17<strong>Version: {{ group_name }}</strong><br/>
18{% for job_name, builds in jobs.items() %}
19<em>Job: {{ job_name }}</em><br/>
20{% set timebox = builds | timebox(24,10) %}
21<ul>
22{% for tb in timebox %}
23<li class="{{ tb.result }}">
24 {{ tb.box_start | tsdate }} - {{ tb.outcome }}<br/>
25 {% for build in tb.builds %}
26 {% if "build_url" in build %}
27 <a href="{{ build.build_url }}" class="{{ build.result }}">{{ build.id }}</a>
28 {% else %}
29 <span class="{{ build.result }}">{{ build.id }}</span>
30 {% endif %}
31 {% else %}
32 No Builds
33 {% endfor %}
34</li>
35{% endfor %}
36</ul>
37{% endfor %}
38{% else %}
39No Tests Currently Available
40{% endfor %}
41</div>
42{% endblock %}