1
2
3
4
5
6
7
8
9
10
11 | --- a/webcontrol/templates/browse-statistics.html +++ b/webcontrol/templates/browse-statistics.html @@ -28,7 +28,7 @@ <tr> <th>pass rate</th> {% for arch in release_arches[r]|sort %} - <td>{% if data[r][arch]['numpkgspass'] %} + <td>{% if data[r][arch]['numpkgs'] %} {{'%.1f' % (data[r][arch]['numpkgspass'] * 100 / data[r][arch]['numpkgs'])}}% {% endif %}</td> {% endfor %} |