{% extends "base.html" %} {% load static %} {% block title %}Leaderboard | Testpoint{% endblock %} {% block meta_description %}Compare IELTS mock-test progress, track your rank, and build a consistent study habit.{% endblock %} {% block extra_css %}{% endblock %} {% block content %}

Leaderboard

See how you rank, track your progress, and challenge yourself to reach your target band.

Your rank{% if current_row %}#{{ current_row.rank }}{% else %}—{% endif %}{% if current_row %}out of {{ rows|length }} students{% else %}Complete a scored test to join{% endif %}
Band score{% if current_row %}{{ current_row.band|floatformat:1 }}{% else %}—{% endif %} Keep improving each week
Tests completed
{{ completed_tests }}
Current streak
{{ profile.streak }} day{{ profile.streak|pluralize }}

{% if current_row %}You're making progress. Keep practicing to climb the leaderboard.{% else %}Your first completed mock test will establish your rank.{% endif %}

{% for student in rows %} {% endfor %}
Current standings
RankStudentBand scoreTestsTrend
#{{ student.rank }} {{ student.initial }}{{ student.name }}{% if student.is_current %} (You){% endif %}{% if student.demo %}Preview{% endif %} {{ student.band|floatformat:1 }} {{ student.tests }} {{ student.trend }}
{% endblock %}