44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "quiz/components/base.html" %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
    <h1>SKA Refereeing Theory Exam</h1>
 | 
						|
 | 
						|
    <h2>Candidate Results</h2>
 | 
						|
 | 
						|
    <h3 class="results-name">
 | 
						|
        <span class="surname">{{ entry.get_surname() }}</span>, {{ entry.get_first_name() }}
 | 
						|
    </h3>
 | 
						|
 | 
						|
    <strong class="results-details">Email Address</strong>: {{ entry.get_email() }} <br />
 | 
						|
 | 
						|
    {% if entry.get_club() %}
 | 
						|
        <strong class="results-details">Club</strong>: {{ entry.get_club() }} <br />
 | 
						|
    {% endif%}
 | 
						|
 | 
						|
    {% if entry.status == 'late' %}
 | 
						|
 | 
						|
        Your results are invalid because you did not submit your exam in time. Please contact the SKA Refereeing Coordinator.
 | 
						|
 | 
						|
    {% else %}
 | 
						|
 | 
						|
        <div class="results-score">
 | 
						|
            {{ score }}
 | 
						|
        </div>
 | 
						|
 | 
						|
        <div class="results-grade">
 | 
						|
            {{ entry.result.grade[0]|upper }}{{ entry.result.grade[1:] }}
 | 
						|
        </div>
 | 
						|
 | 
						|
        {% if entry.result.grade == 'fail' %}
 | 
						|
            Unfortunately, you have not passed the theory exam in this attempt. For your next attempt, it might help to brush up on the following topics:
 | 
						|
 | 
						|
            <ul>
 | 
						|
                {% for tag in tag_output %}
 | 
						|
                    <li>{{ tag }}</li>
 | 
						|
                {% endfor %}
 | 
						|
            </ul>
 | 
						|
        {% endif %}
 | 
						|
 | 
						|
        A copy of these results will be sent to you via email.
 | 
						|
    {% endif %}
 | 
						|
{% endblock %} |