{% extends "core/index.html" %} {% load i18n %} {% load crit_name_cleaner %} {% load setting %} {% core_setting 'SEGMENTATION_ENABLED' as seg_enabled %} {% block Title %}{% trans 'Estimation check' %}{% endblock %} {% block Scripts %} {% endblock %} {% block Caption %}{% trans 'Estimation check' %}{% endblock %} {% block Content %}
{% with snip_tpls_ext=snip_tpls_ext task=est.task show_pools=True show_request=True %} {% include 'core/snippet_pair.html' %} {% endwith %}
{% if est.user != yauser.core_user %}
{% trans 'You are viewing the corrections for actual estimation made by' %} {{ est.user }}.
{% endif %} {% if draft %}
{% trans 'These corrections are draft. You must finish checking to send them to ANG.' %}
{% endif %}
{% if assessor_ests %} {% for crit, counter in counted_ests %} {% endfor %} {% for as_est, est_vals in assessor_ests %} {% for crit_name, val, aa_val, sign_err in est_vals %} {% endfor %} {% endfor %}
{% trans 'All estimations' %}
{% for digit, val in est.VALUE_NAMES %}
{% trans val|title %}
{% endfor %}
{% for digit, count in counter %} {% endfor %}
 {{ as_est.user.login }} {% if as_est.comment %}
{% if as_est.answer %} {% trans 'Question' %}: {% else %} {% trans 'Comment' %}: {% endif %} {{ as_est.comment }}
{% if as_est.answer %}
{% trans 'Answer' %}: {{ as_est.answer }}
{% endif %} {% endif %}
{% else %}
{% trans 'Nobody has completed this task yet. You may press "Finish checking" if you would like to complete this task.' %}
{% endif %} {% csrf_token %}
{% if assessor_ests %} {% endif %}
{% include 'core/estimation_form.html' %}
{% if est.task.status == est.task.Status.COMPLETE %}
{% blocktrans %} This task is checked. If you wish to change estimation, you should check error values again to keep ANG statistics actual. {% endblocktrans %}
{% endif %} {% endblock %}