{% extends "admin/base.html" %} {% load i18n %} {% block title %}Dashboard | {{ site_title }}{% endblock %} {% block content %}

Dashboard

A clear view of your Testpoint platform.

{% for metric in dashboard_metrics %}
{{ metric.label }}{{ metric.value }}
{{ metric.detail }}
{% endfor %}

Activity overview

Student attempts and active students across the last 7 days.

Last 7 days
{% if has_chart_activity %}
Student attempts Active students
{% else %}
No activity yet

Activity will appear here when students start tests.

{% endif %}

Recent tests

Your newest test content and its real activity.

View all tests
{% if recent_tests %}
{% for test in recent_tests %}{% endfor %}
Test titleSkillQuestionsAttemptsStatusCreated
{{ test.title }}{{ test.get_category_display }}{{ test.question_count }}{{ test.attempt_count }}{% if test.is_published %}Published{% else %}Draft{% endif %}{{ test.created_at|date:"M j, Y" }}
{% else %}
No tests created yet

Create your first test to start building the practice library.

Create a test
{% endif %}
{% endblock %}