{% extends "base.html" %} {% load i18n %} {% block title %} {% trans "Progress Page" %} | {% trans 'Learning management system' %} {% 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." %}

{% trans 'Total complete exams:' %} {{ exams_counter }}
{% for exam in exams %} {% endfor %}
# {% trans "Quiz Title" %} {% trans "Score" %} {% trans "Possible Score" %} {% trans 'Out of 100%' %}
{{ forloop.counter }} {{ exam.quiz.title }} {{ exam.current_score }} {{ exam.get_max_score }} {{ exam.get_percent_correct }}%
{% endif %} {% if not cat_scores and not exams %}

{% trans 'No recordes yet. Try to do some quizzes in your course.' %}
{% endif %} {% endblock %}