{% extends 'base.html' %} {% block content %}

Welcome, {{ participant.name }}

Institution: {{ participant.institution }} | Class: {{ participant.class_name }}

Available Quizzes

{% if quizzes %} {% for quiz in quizzes %}

{{ quiz.title }}

{{ quiz.description }}

Start Quiz
{% endfor %} {% else %}

No quizzes available at the moment.

{% endif %}

Your Current Standing

Latest Score Global Position
{{ participant.score }} / {{ participant.total_questions }} {{ position }}
{% endblock %}