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

Question Category Scores

Below are the categories of questions that you have attempted. Blue is the percentage that are correct.

{% for cat, value in cat_scores.items %} {% ifnotequal cat "empty" %} {% if forloop.first %}
{% endif %} {% if exams %}

Previous exam papers

Below are the results of exams that you have sat.

{% for exam in exams %} {% user_previous_exam exam %} {% endfor %}
Quiz Title Score Possible Score %
{% endif %}
{% endblock %}