{% extends 'generic/base_supervisor.html' %} {% block content %}

{{ trainee.first_name }} {{ trainee.last_name }}

{{ trainee.email }}

Grade
{{ trainee.userprofile.grade|default:"N/A" }}
Primary Site
{{ trainee.userprofile.site|default:"N/A" }}
Attempts
{{ attempts|length }}

Trainee Attempts History

{% for item in attempts %} {% empty %} {% endfor %}
Attempt Item Type Date Attempted Sharing Status Score / Progress Action
{{ 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 (Private) {% endif %} {% if item.is_shared and item.detail_url %} View Details {% else %} {% endif %}
This trainee has not started any attempts yet.
{% endblock %}