{% extends 'atlas/exams.html' %} {% load static %} {% block css %} {{ block.super }} {% endblock %} {% block content %}

Supervision

Collection attempts shared with you as author, marker, supervisor or by direct invitation. {{ total_attempts }} attempt{{ total_attempts|pluralize }} found.

{# ---- Filter / group toolbar ---- #}
{# Group by #}
{# Learner search #}
{# Date range #}
{# Supervisor-only toggle (only visible when user is a supervisor) #} {% if is_supervisor %}
{% endif %}
Clear
{# ---- Grouped results ---- #} {% if groups %} {% for group_label, attempt_rows in groups %}
{% if group_by == 'user' %} {% else %} {% endif %} {% for attempt, collection in attempt_rows %} {% if group_by == 'user' %} {% else %} {% endif %} {% endfor %}
CollectionLearnerStarted Ended Status
{% if collection %}{{ collection.name }}{% else %}Unknown{% endif %} {% if attempt.user_user %} {{ attempt.user_user.get_full_name|default:attempt.user_user.username }} {% if attempt.user_user.email %}
{{ attempt.user_user.email }} {% endif %} {% elif attempt.cid_user %} CID {{ attempt.cid_user.cid }} {% if attempt.cid_user.name %}
{{ attempt.cid_user.name }}{% endif %} {% else %} Unknown {% endif %}
{{ attempt.start_time|default:"-" }} {{ attempt.end_time|default:"-" }} {% if attempt.completed %} Completed {% else %} In progress {% endif %} {% if attempt.user_user_id and collection %} View attempt {% else %} View attempt {% endif %}
{# /collapse #}
{% endfor %} {% else %}
No collection attempts found. Try adjusting the filters.
{% endif %} {% endblock %}