{% extends 'generic/base_supervisor.html' %} {% load crispy_forms_tags %} {% block content %}
{{ supervisor.email }} · {{ supervisor.site|default:"No site linked" }}
This hub allows you to monitor and review your trainees' progress on exams and case collections.
Trainees have option to choose which attempts to share. Shared attempts are fully viewable (score and answers link). Private attempts show the completion date only, keeping results confidential.
| Trainee Name | Grade | Site | Shared / Private Attempts | Last Activity | Action | |
|---|---|---|---|---|---|---|
| {{ stat.trainee.first_name }} {{ stat.trainee.last_name }} | {{ stat.trainee.email }} | {{ stat.trainee.userprofile.grade|default:"N/A" }} | {{ stat.trainee.userprofile.site|default:"N/A" }} | {{ stat.shared_count }} {{ stat.private_count }} | {% if stat.last_active %} {{ stat.last_active|date:"d M Y H:i" }} {% else %} No activity {% endif %} | View Progress |
| You currently have no associated trainees. | ||||||
| Trainee | Attempt Item | Type | Date Completed | Sharing | Score / Progress | Action |
|---|---|---|---|---|---|---|
| {{ item.trainee.first_name }} {{ item.trainee.last_name }} | {{ item.exam }} | {{ item.type_display }} | {{ item.date|date:"d M Y H:i" }} | {% if item.is_shared %} Shared {% else %} Private {% endif %} | {% if item.is_shared %} {{ item.score_str }} {% else %} Locked {% endif %} | {% if item.is_shared and item.detail_url %} View Details {% else %} {% endif %} |
| No trainee attempts recorded. | ||||||