{% extends "base.html" %} {% load richtext %} {% block title %}My Progress{% endblock %} {% block content %}

My Progress

{% if not has_data %}

You haven't answered any practice questions yet. Once you do, this page will track your accuracy and progress in every course.

  Browse courses

{% else %}
{{ overall_accuracy }}%
overall accuracy
{{ overall_correct }}/{{ overall_answered }}
questions correct (latest try)
{{ total_submitted }}
total answers submitted
{% if overall_written %}
{{ overall_written }}
written responses practiced
{% endif %}

By course

{% for row in course_rows %}

{{ row.course.title|exam_marks }}

{% if row.answered %}{{ row.accuracy }}% accuracy · {{ row.answered }} of {{ row.total }} questions tried{% else %}No multiple-choice questions tried yet{% endif %} {% if row.written %}· {{ row.written }} written response{{ row.written|pluralize }} practiced{% endif %}

Practice this course →

{% endfor %}

Recent activity

{% endif %} {% endblock %}