{% extends "base/base.html" %} {% block title %} Table of all tasks {% endblock title %} {% block page_heading %} Table of all tasks {% endblock page_heading %} {% block main_content %}

Overview

Click on a marking task for detailed information.

{% for qi, qlabel in question_labels %} {% endfor %} {% for pn in papers_with_a_task %} {% with dat=id_task_overview|get_item:pn %} {% if dat.status == "Complete" %} {% elif dat.status == "To Do" %} {% elif dat.status == "Out" %} {% else %} {% endif %} {% endwith %} {% with all_q_dat=marking_task_overview|get_item:pn %} {% for qi in question_indices %} {% with dat=all_q_dat|get_item:qi %} {% if dat.status == "Complete" %} {% elif dat.status == "To Do" %} {% elif dat.status == "Out" %} {% else %} {% endif %} {% endwith %} {% endfor %} {% endwith %} {% endfor %} {% for qi, qlabel in question_labels %} {% endfor %} {% for qi, qlabel in question_labels %} {% endfor %}
paper identify {% with dat=id_task_status_counts %} {% include "Progress/fragments/task_progress_bar.html" with total=n_papers n_complete=dat|get_item:"Complete" n_todo=dat|get_item:"To Do" n_out=dat|get_item:"Out" n_missing=dat|get_item:"Missing" %} {% endwith %} {{ qlabel }} {% with dat=marking_task_status_counts|get_item:qi %} {% include "Progress/fragments/task_progress_bar.html" with total=n_papers n_complete=dat|get_item:"Complete" n_todo=dat|get_item:"To Do" n_out=dat|get_item:"Out" n_missing=dat|get_item:"Missing" %} {% endwith %}
{{ pn }} {{ dat.sid }} {% if dat.sid is None %}{% endif %} to doouttask missing {{ dat.score_str }} to do out task missing
ID progress {{ qlabel }} statistics
{{ qlabel }} annotations
{% endblock main_content %}