{% extends "base.html" %} {% load static %} {% block title %}{{ exam_set.title }} | Testpoint{% endblock %} {% block meta_description %}Review the sections, timing, and instructions for {{ exam_set.title }}.{% endblock %} {% block extra_css %}{% endblock %} {% block content %}
Back to tests
{% if exam_set.access_level == 'premium' %} Lifetime Premium{% else %}IELTS practice test{% endif %}

{{ exam_set.title }}

{{ exam_set.description|default:"A timed IELTS practice test designed to help you understand your current performance." }}

{% if exam_set.delivery_mode == 'exact_html' %}

Original HTML test: this opens with the uploaded design, layout, questions, and controls intact.

{% endif %}
{% if exam_set.delivery_mode == 'exact_html' %}
Exact HTML
Original layout
Full screen
{% else %}
{{ sections|length }} sections
{{ question_count }} questions
{{ total_minutes }} minutes
{% endif %}
{% if exam_set.delivery_mode != 'exact_html' %}

Test sections

{% for section in sections %}
{{ forloop.counter }}
{{ section.get_section_type_display }}{{ section.questions.count }} question{{ section.questions.count|pluralize }} ยท {{ section.time_limit_minutes }} minutes
{% empty %}

No sections have been published for this test.

{% endfor %}
{% endif %}
{% endblock %}