{% 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.name.surname }}, {{ entry.name.first_name }} {% if 'club' in entry %} {{ entry.club }} {% endif %} {{ '—'.join([entry.test_code[:4], entry.test_code[4:8], entry.test_code[8:]]) }} {% if 'status' in entry %} {{ entry.status }} {% endif %} {% if 'submission_time' in entry %} {{ entry.submission_time.strftime('%d %b %Y') }} {% endif %} {% if 'results' in entry %} {{ entry.results.score }}% {% endif %} {% if 'results' in entry %} {{ entry.results.grade }} {% endif %}
{% else %}
There are no exam attempts to view.
{% endif %} {% endblock %} {% if entries %} {% block custom_data_script %} {% endblock %} {% endif %}