{% extends "base.html" %} {% load i18n %} {% block title %} {% trans "Progress Page" %} | {% trans 'Learning management system' %} {% endblock %} {% block description %} {% trans "User Progress Page" %} {% endblock %} {% block content %}

{% trans 'Quiz Progress Rec' %}

{% 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" %}

{% if request.user.is_superuser %} {% trans "Student exam results" %} {% else %} {% trans "Below are the results of exams that you have sat" %} {% endif %}

{% 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 'Progress records will appear here' %}

{% endif %} {% endblock %}