{% extends "base/base.html" %} {% block title %} Browse marking {% endblock title %} {% block page_heading %} Browse marking {% if username == "*" %} {% else %} by {{ username }} {% endif %} {% if paper == "*" %} {% else %} of paper {{ paper }} {% endif %} {% if question == "*" %} {% else %} of {{ question_label|safe }} {% endif %} {% if version == "*" %} {% else %} of v.{{ version }} {% endif %} {% if score == "*" %} {% else %} with score {{ score }} {% endif %} {% if the_tag == "*" %} {% else %} tagged {{ the_tag }} {% endif %} {% if status == "*" %} {% else %} with status {{ status_label }} {% endif %} {% endblock page_heading %} {% block main_content %}
Overview User List
{% if warning %}
Please set at least one filter.
{% endif %}
{% if not warning %}
Marking tasks:
{% for task_data in task_info %} {% if task_data.status == "Complete" %} {% elif task_data.status == "To Do" %} {% elif task_data.status == "Out" %} {% else %} {% endif %} {% endfor %}
P Q_idx V Status Last update Marker Score tags Show
{{ task_data.paper_number }} {{ task_data.question }} {{ task_data.version }}{{ task_data.status }}{{ task_data.status }}{{ task_data.status }}{{ task_data.status }}{{ task_data.last_update }} {{ task_data.username }} {{ task_data.score_str }} {% for tg in task_data.attn_tags %}
{{ tg }}
{% endfor %} {% for tg in task_data.tags %}
{{ tg }}
{% endfor %}
details {% if task_data.status %} {% endif %} {% if task_data.status == "Complete" %} {% endif %}
{% endif %} {% if not warning %}
{% endif %}
{% endblock main_content %}