{% extends "core/index.html" %}
{% load i18n %}
{% load crit_name_cleaner %}
{% block Title %}{% trans 'Statistics' %}{% endblock %}
{% block Scripts %}
{% endblock %}
{% block Content %}
{% trans 'Task pool' %}:
|
{{ taskpool.title }}
|
{% trans 'Tasks type' %}:
|
{{ taskpool.kind_pool_str }}
|
{% trans 'Estimation mode' %}:
|
{{ taskpool.kind_str }}
|
{% trans 'Overlap' %}:
|
{{ taskpool.overlap }}
|
{% trans 'Estimation count' %}:
|
{{ est_count }}
|
{% trans 'Unique estimation amount' %}:
|
{{ unique_ests_count }}
|
{% trans 'Integral data' %}
({% trans 'Corrected' %} / {% trans 'Original' %})
{% load percentage %}
{% load yauth %}
{% if filter_crit and filter_val %}
{% trans 'Filter selected' %}:
{% trans filter_crit|crit_name_cleaner|capfirst %},
{% trans filter_val|title %}
{% endif %}
{% if yauser.core_user.role == yauser.core_user.Role.ANALYST %}
{% else %}
{% endif %}
|
{{ taskpool.first_pool_str }}
|
{% trans 'both'|title %}
|
{{ taskpool.second_pool_str }}
|
{% if yauser.core_user.role != yauser.core_user.Role.ANALYST %}
{% trans 'Different estimations' %}
|
{% trans 'Opposite estimations' %}
|
{% endif %}
{% for criterion, counters, wilcoxon_test, different, opposite, has_line_info in integral_data %}
{% trans criterion|crit_name_cleaner|capfirst %}:
|
{% for corr_number, orig_number in counters %}
{% cycle 'left' 'both' 'right' as crit_val silent %}
{% if filter_crit == criterion and filter_val == crit_val %}
{% endif %}
|
{% endfor %}
{% if yauser.core_user.role != yauser.core_user.Role.ANALYST %}
{{ different|length }}
{{ different|length|percentage:task_count }}
|
{{ opposite|length }}
{{ opposite|length|percentage:task_count }}
|
{% endif %}
{% endfor %}
{% if est_count %}
{% trans 'Grouped by users' %}
{% trans 'Count' %}:
{{ user_pks|length }}
{% if user_pks %}
{% if yauser.core_user.role == yauser.core_user.Role.ANALYST %}
{% else %}
{% endif %}
{% trans 'User' %}
|
{% trans 'Request' %}
|
URL
|
{% if yauser.core_user.role == yauser.core_user.Role.ANALYST %}
{% trans 'Estimation' %}
|
{% for crit_name in crit_names %}
{% trans crit_name|title|slice:'1' %}
|
{% endfor %}
{% trans 'Comment' %}
|
{% else %}
{% trans 'Criterion' %}
|
{{ taskpool.first_pool.title }}
|
{% trans 'both'|title %}
|
{{ taskpool.second_pool.title }}
|
{% trans 'Different estimations' %}
|
{% trans 'Opposite estimations' %}
|
{% endif %}
{% else %}
{% trans 'No estimations available.' %}
{% endif %}
{% else %}
{% trans 'No estimations available.' %}
{% endif %}
{% endblock %}