{% extends "base.html" %} {% load static %} {% block title %}Dashboard | Testpoint{% endblock %} {% block meta_description %}Track your IELTS practice progress, skill accuracy, and recent mock tests.{% endblock %} {% block extra_css %}{% endblock %} {% block content %}

Welcome back, {{ request.user.first_name|default:request.user.username }}!

Here’s where your practice stands today.

Browse tests
Tests completed{{ tests_taken }}
Answer accuracy{{ accuracy }}%
Average test time{{ avg_time }}
Current streak{{ profile.streak }} day{{ profile.streak|pluralize }}
Today’s study path

Daily missions

Complete missions and claim bonus XP for consistent practice.

Resets daily
{% for mission in daily_missions %}

{{ mission.title }}

+{{ mission.xp }} XP

{{ mission.description }}

{{ mission.progress }} / {{ mission.target }}
{% if mission.claimed %} Claimed{% elif mission.complete %}
{% csrf_token %}
{% else %}In progress{% endif %}
{% endfor %}
Performance

Skills overview

Based on graded answers
{% for skill in skills %}
{{ skill.name }}{{ skill.value }}%
{% endfor %}
Progress analytics

Learn from every attempt

These insights are calculated from your completed tests and graded answers.

{{ total_study_minutes }} minute{{ total_study_minutes|pluralize }} studied
Performance trend

Recent results

{% if trend_change is not None %} {{ trend_change|floatformat:0 }}%{% endif %}
{% if trend_attempts %}{% else %}

Complete graded tests to see your performance trend.

{% endif %}
Question types

Accuracy breakdown

{% if question_type_accuracy %}
{% for item in question_type_accuracy %}
{{ item.name }}{{ item.value }}%
{% endfor %}
{% else %}

Objective answers will appear here once they are graded.

{% endif %}
Focus area

Where to improve

{% if weakest_skill %}
{{ weakest_skill.name }}

{{ weakest_skill.value }}% current score

Prioritise {{ weakest_skill.name|lower }} practice to lift your overall result.

Practice {{ weakest_skill.name }} {% else %}

Your focus area will appear after graded answers are available.

{% endif %}
Consistency

Study streak

{{ profile.streak }} day{{ profile.streak|pluralize }}
{% for day in streak_days %}{{ day.label }}{% endfor %}

Complete a test today to keep your practice habit active.

History

Recent tests

View all
{% if recent_attempts %}
{% for item in recent_attempts %}
{{ item.attempt.exam_set.title }}Completed {{ item.attempt.submitted_at|date:"M j, Y" }}
Time{{ item.duration }}
Score{% if item.score is not None %}{{ item.score }}%{% else %}Pending{% endif %}
{% endfor %}
{% else %}

No completed tests yet

Your scores and test history will appear here after your first completed mock test.

Explore available tests
{% endif %}
{% endblock %}