{% extends "base.html" %} {% load i18n %} {% load quiz_tags %} {% block title %} {% trans "Progress Page" %} {% endblock %} {% block description %} {% trans "User Progress Page" %} {% endblock %} {% block content %} {% if cat_scores %}

{% trans "Question Category Scores" %}

{% for cat, value in cat_scores.items %} {% endfor %}
{% trans "Category" %} {% trans "Correctly answererd" %} {% trans "Incorrect" %} %
{{ cat }} {{ value.0 }} {{ value.1 }} {{ value.2 }}
{% endif %} {% if exams %}

{% trans "Previous exam papers" %}

{% trans "Below are the results of exams that you have sat." %}

{% for exam in exams %} {% endfor %}
{% trans "Quiz Title" %} {% trans "Score" %} {% trans "Possible Score" %} %
{{ exam.quiz.title }} {{ exam.current_score }} {{ exam.get_max_score }} {{ exam.get_percent_correct }}
{% endif %} {% endblock %}