{% extends "base/base.html" %} {% block title %} Identifying progress {% endblock title %} {% block page_heading %} Identifying progress {% endblock page_heading %} {% block main_content %}

Overview

{% with dat=id_task_status_counts %} {% include "Progress/fragments/task_progress_bar.html" with total=all_task_count n_complete=dat|get_item:"Complete" n_todo=dat|get_item:"To Do" n_out=dat|get_item:"Out" %} {% endwith %}
{% for pn, data in id_task_info.items %} {% if data.status == "Complete" %} {% else %} {% endif %} {% endfor %}
Paper ID Page Status ID Name Action Remark
{{ pn }} {% if data.idpageimage_pk %} {% else %} No ID page {% endif %} {% if data.status == "Complete" %} identified by {{ data.username }} {% else %} {{ data.status }} {% endif %} {{ data.student_id }} {% if not data.student_id %}{% endif %} {{ data.student_name }} {% if not data.in_classlist %} Not from uploaded classlist {% else %} - {% endif %} {% if data.prediction %} predicted ID: {{ data.prediction|join:', ' }} {% else %} - {% endif %}
{% endblock main_content %}