{% extends 'core/index.html' %} {% load i18n %} {% block Title %}{% trans 'Estimation statistics' %}{% endblock %} {% block Scripts %} {% endblock %} {% block Caption %}{% trans 'Estimation statistics' %}{% endblock %} {% block Content %}
{{ form.as_table }}
{% if tab == 'count' %} {% if est_infos %} {% trans 'Total' %}:
{% trans 'records displayed' %}:
{{ pages.obj_count }}
{% trans 'estimations left' %}:
{{ total_count }}

{% load paginator %} {% url 'core:est_statistics_default' as page_url %} {% paginator page_url pages as pg %} {{ pg }} {% for date, count in est_infos %} {% endfor %}
{% trans 'Date' %} {% trans 'Country' %} {% trans 'Estimation count' %}
{{ date }} {% trans country %} {{ count }}
{{ pg }} {% else %}

{% trans 'No estimations are available.' %}

{%endif%} {% elif tab == 'time' %}
{% trans 'Medians and minimums are displayed with zero times ignored.' %}
{% trans 'All estimations.' %}
{% with params=stats.all %} {% include 'core/time_statistics.html' %} {% endwith %}
{% trans 'Linked estimations.' %}
{% with params=stats.linked %} {% include 'core/time_statistics.html' %} {% endwith %}
{% trans 'Unlinked estimations.' %}
{% with params=stats.unlinked %} {% include 'core/time_statistics.html' %} {% endwith %} {% else %} {% if columns %} {% for login, column in columns %} {% if column.precisions %} {% for prec in column.precisions %} {% endfor %} {% else %} {% for crit in ext_crit_names %} {% endfor %} {% endif %} {% if column.time %} {% else %} {% endif %} {% if column.linked %} {% else %} {% endif %} {% if column.complete %} {% else %} {% endif %} {% if column.rejected %} {% else %} {% endif %} {% if column.skipped %} {% else %} {% endif %} {% if column.timeout_packs %} {% else %} {% endif %} {% endfor %} {% for med in medians.precisions %} {% endfor %}
{% trans 'Login' %} {% trans 'Precision' %} {% for crit_name in ext_crit_names %} {% endfor %}
{% if forloop.counter < ext_crit_names|length %} {% trans crit_name|slice:'1'|capfirst %} {% else %} {% trans crit_name|capfirst %} {% endif %}
{% trans 'Time' %}
{% trans 'Linked' %}
{% trans 'Complete' %}
{% trans 'Rejected' %}
{% trans 'Skipped' %}
{% trans 'Timeout packs' %}
{{ login }} {{ prec|floatformat:3 }} 1 {{ column.time }} 0 {{ column.linked }} % 0 % {{ column.complete }} 0 {{ column.rejected }} 0 {{ column.skipped }} 0 {{ column.timeout_packs }} 0
{% trans 'Totally' %}: {{ med }} {{ medians.time }} {{ medians.linked }} % {{ sums.complete }} {{ sums.rejected }} {{ sums.skipped }} {{ sums.timeout_packs }}
{% else %}

{% trans 'No assessors are available.' %}

{% endif %} {% endif %} {% endblock %}