{% extends 'base_dashboard.html' %} {% block title %}Schedule your certification test{% endblock %} {% block content %}

Schedule your test

{{ program.title }} — choose a TSN Digital Center or remote online

{% if application.schedule_slot %}
Current booking: {{ application.testing_center.name }} — {{ application.schedule_slot.label }} Change
{% endif %}
{% if program.allow_center_exam %}
Take exam at a testing center

Visit a TSN Digital Center on your booked date. On-site staff will give you the unlock code.

{% if slots %}
{% for slot in slots %}
{% csrf_token %}
{{ slot.center.name }} · {{ slot.center.city }}
{{ slot.label }} · {{ slot.seats_available }} seat{{ slot.seats_available|pluralize }} left
{{ slot.center.address }}
{% endfor %}
{% else %}
No upcoming slots available. Please check back later or contact the academy.
{% endif %}
{% endif %} {% if program.allow_remote_exam %}
Take exam online (remote)

Join a live video meeting with a teacher/consultant from home. They will share an unlock code.

{% csrf_token %}
{% endif %}
← Back
{% endblock %}