aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/non-release-index.html.j2
blob: c11f6645c76f6029992188a340329d8895661626 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Index of autobuilder test results</title>
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.1/css/bulma.min.css">
</head>
<body>
 
<table class="table is-narrow is-striped">
<thead>
<tr>
  <th>Build</th>
  <th>Type</th>
  <th>Branch</th>
  <th>Test Results Report</th>
  <th>Performance Reports</th>
  <th>ptest Logs</th>
  <th>Buildhistory</th>
  <th>Host Data</th>
</tr>
</thead>
<tdata>
{% for entry in entries %}
<tr>
   <td><a href="{{entry[1]}}">{{entry[0]}}</a></td>
   <td>{% if entry[2] %} {{entry[2]}}{% endif %}</td>
   <td>{% if entry[4] %} {{entry[4]}}{% endif %}</td>
   <td>
     {% if entry[3] %}<a href="{{entry[3]}}">Report</a>{% endif -%}
     {% if entry[9] %}<br><a href="{{entry[9]}}">Regressions</a>{% endif %}
   </td>
   <td>
   {% for perfrep in entry[6] %}
     <a href="{{perfrep[0]}}">{{perfrep[1]}}</a>
   {% endfor %}
   </td>
   <td>
   {% for ptest in entry[7] %}
     <a href="{{ptest[0]}}">{{ptest[1]}}</a>
   {% endfor %}
   </td>
   <td>
   {% for bh in entry[5] %}
     <a href="{{bh[0]}}">{{bh[1]}}</a>
   {% endfor %}
   </td>
   <td>
   {% for hd in entry[8] %}
     <a href="{{hd[0]}}">{{hd[1]}}</a>
   {% endfor %}
   </td>
</tr>
{% endfor %}
</tdata>
</table>
</body>
</html>