{% 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 %}
P | Q_idx | V | Status | Last update | Marker | Score | tags | Show | |||
---|---|---|---|---|---|---|---|---|---|---|---|
{{ task_data.paper_number }} | {{ task_data.question }} | {{ task_data.version }} | {% if task_data.status == "Complete" %}{{ task_data.status }} | {% elif task_data.status == "To Do" %}{{ task_data.status }} | {% elif task_data.status == "Out" %}{{ task_data.status }} | {% else %}{{ task_data.status }} | {% endif %}{{ 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 %} |