You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
3.9 KiB
84 lines
3.9 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- HTML5 compliance -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<!-- Import Bootstrap 4.3.1 -->
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
|
|
|
<!-- Favicon and page title -->
|
|
<link rel="icon" type="image/png" href="/assets/favicon.png"/>
|
|
<title>Summary for Lubuntu Project Metrics</title>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col" style="text-align: center;">
|
|
<h1>Summary for Lubuntu Project Metrics</h1>
|
|
</div>
|
|
</div>
|
|
<div class="row justify-content-center">
|
|
<div class="col-xs-6" style="text-align: center;">
|
|
<h2>Jenkins Data</h2>
|
|
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Time (days)</th>
|
|
<th>Average Non-passing</th>
|
|
<th>Average Failing</th>
|
|
<th>Average Total</th>
|
|
<th>Graph for Data</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for day in page.Jenkins %}
|
|
<tr>
|
|
<td>{{ day }}</td>
|
|
{% for avg in page.Jenkins[day] %}
|
|
<td>{{ avg }}</td>
|
|
{% endfor %}
|
|
<td><a href="jenkins_{{ day }}days.html">Here</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-6" style="text-align: center;">
|
|
<h2>Discourse Data</h2>
|
|
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Time (days)</th>
|
|
<th>Average Open Support Topics</th>
|
|
<th>Average Total Support Topics</th>
|
|
<th>Average % (Open / Total) Support Topics</th>
|
|
<th>Average Open Topics</th>
|
|
<th>Average Total Topics</th>
|
|
<th>Average % (Open / Total) Topics</th>
|
|
<th>Graph for Data</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for day in page.Discourse %}
|
|
<tr>
|
|
<td>{{ day }}</td>
|
|
{% for avg in page.Discourse[day] %}
|
|
<td>{{ avg }}</td>
|
|
{% endfor %}
|
|
<td><a href="discourse_{{ day }}days.html">Here</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|