{% extends "admin/components/datatable.html" %} {% block title %} SKA Referee Test | View Results {% endblock %} {% block content %} {% include "admin/components/client-alerts.html" %}

View Results

{% if entries %} {% for entry in entries %} {% endfor %}
Name Club Exam Code Status Submitted Result Grade Details
{{ entry.get_surname() }}, {{ entry.get_first_name() }} {% if entry.get_club() %} {{ entry.get_club() }} {% endif %} {{ entry.test.get_code() }} {% if entry.status %} {{ entry.status }} {% endif %} {% if entry.end_time %} {{ entry.end_time.strftime('%d %b %Y') }} {% endif %} {% if entry.result %} {{ entry.result.score }}% {% endif %} {% if entry.result %} {{ entry.result.grade }} {% endif %}
{% else %}
There are no exam attempts to view.
{% endif %} {% endblock %} {% if entries %} {% block custom_data_script %} {% endblock %} {% endif %}