{% extends "base/base.html" %} {% load static %} {% 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 data in annotations %} {% endfor %} {% endfor %}
Username Question Version Annotation Count Average Marking Time Percentage Marked
{{ username }} {{ data.question_label_html|safe }} {{ data.question_version }} {{ data.annotations_count }} {{ data.average_marking_time }}
{{ data.percentage_marked }}%
{% include "./modal_forms.html" %} {% endblock main_content %}