{% extends "base.html" %} {% load richtext %} {% block title %}Your {{ label|exam_marks }} Diagnostic Results{% endblock %} {% block content %}

Your {{ label|exam_marks }} Diagnostic Results

{{ correct }} / {{ total }} correct.

{% if recommended %}

Start with these courses

We flag a topic for review when you get fewer than two of its three questions right. Based on the topics where you fell below that mark, these courses will help you the most — each is listed with the exact skills to focus on first.

{% for rec in recommended %}

{{ rec.course.title|exam_marks }}

Focus on: {{ rec.topics|join:", " }}

Jump to practice questions →
{% endfor %} {% else %}

Great work — you're proficient in every topic! 🎉

You scored at or above the proficiency mark on all of them. You're ready to rehearse under real conditions with a full-length practice test:

{% for course in ready %}

{{ course.title|exam_marks }}

{% endfor %}
{% endif %}

Your results by topic

  Browse all courses

{% endblock %}