{% extends "elearning.html" %} {% load staticfiles %} {% block headtitle %}Self Assessment - {{ unit }} - {{ course }} - {{ block.super }}{% endblock %} {% block bodyclass %}elearning-content{% endblock %} {% block content %}
Dashboard
/
{{ course }}
/
{{ unit }}
/
Self Assessment Review
{% if manager %}
{% endif %}
Self Assessment
{{ unit }}
{% if not score == 100 %}
You scored
{{ score }}%
To go back and change an answer, click on the arrow within the question below:
{% else %}
Congratulations, you passed with a score of {{ score }}%
Review Tutorial
{% endif %} {% for submission in question_submissions %} {% if not submission.correct %}
{{ submission.question }}
You answered:
{{ submission.answer }}
{% endif %} {% endfor %}
Back to Tutorial Selection
{% endblock %}