{% extends "base/base.html" %} {% block title %} Marker progress and quotas {% endblock title %} {% block page_heading %} Marker progress and quotas {% endblock page_heading %} {% block main_content %}
Default quota limit: {{ default_quota_limit }}
{% if messages %}
{% for message in messages %} {% if 'modify_default_limit' in message.tags %} {% include "../../base/alert_message.html" with message=message %} {% endif %} {% endfor %}
{% endif %}
{% csrf_token %}
{% csrf_token %}
User account management
{{ users_with_quota_count }} markers have quotas.
{% if messages %}
{% for message in messages %} {% if 'modify_quota' in message.tags %} {% include "../../base/alert_message.html" with message=message %} {% endif %} {% endfor %}
{% endif %}
{% for username, progress in users_progress.items %} {% endfor %}
Username Task Marked Task Claimed Quota Limit Quota Tasks
{{ username }} {% if messages %} {% for message in messages %} {% if 'quota_warning' in message.tags and progress.would_exceed_default_limit %} {% endif %} {% endfor %} {% endif %} {% if progress.has_quota_limit %} {% endif %} {{ progress.tasks_marked }} {{ progress.tasks_claimed }} {% if progress.has_quota_limit %} {{ progress.quota_limit }}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %}
view
Filter annotations by time:

{{ annotation_filter_form.time_filter_seconds.label }} {{ annotation_filter_form.time_filter_seconds }}

{{ error }}

Latest Updated Annotation: {{ latest_updated_annotation_human_time }}

{% for username, annotations in annotations_grouped_by_user.items %} {% for question_data, annotation_data in annotations.items %} {% endfor %} {% endfor %}
Username Question Index Question Version Annotations Count Average Marking Time Percentage Marked
{{ username }} {{ question_data.0 }} {{ question_data.1 }} {{ annotation_data.annotations_count }} {{ annotation_data.average_marking_time }}
{{ annotation_data.percentage_marked }}%
{% for question, annotation_data in annotations_grouped_by_question_ver.items %} {% for annotation in annotation_data.annotations %} {% endfor %} {% endfor %}
Question (Index , Version) Username Annotations Count Average Marking Time Percentage Marked
{{ question.0 }} , {{ question.1 }} {{ annotation.marker }} {{ annotation.annotations_count }} {{ annotation.average_marking_time }}
{{ annotation.percentage_marked }}%
{% include "./modal_forms.html" %} {% endblock main_content %}