diff options
Diffstat (limited to 'euscanwww/djeuscan/templates/euscan/statistics.html')
-rw-r--r-- | euscanwww/djeuscan/templates/euscan/statistics.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/euscanwww/djeuscan/templates/euscan/statistics.html b/euscanwww/djeuscan/templates/euscan/statistics.html index 8217576..f3866d9 100644 --- a/euscanwww/djeuscan/templates/euscan/statistics.html +++ b/euscanwww/djeuscan/templates/euscan/statistics.html @@ -5,6 +5,30 @@ {% block content %} <h2>Statistics</h2> +<hr> + +<h3>Handlers</h3> +<table class="table"> + <thead> + <tr> + <th></th> + <th># of found versions</th> + <th>average confidence</th> + </tr> + </thead> + <tbody> + {% for handler in handlers %} + <tr> + <td>{{ handler.handler }}</td> + <td>{{ handler.n }}</td> + <td>{{ handler.avg_conf }}</td> + </tr> + {% endfor %} + </tbody> +</table> + +<hr> + <h3>Current statistics</h3> <img alt="pie versions" src="{% url "chart" 'pie-versions' %}" /> <img alt="pie packages" src="{% url "chart" 'pie-packages' %}" /> |