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

Question Category Scores

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

Previous exam papers

Below are the results of exams that you have sat.

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