{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
{{Topic}} Quiz
{% endblock %}
{% block content %}
{% formfield player.submitted_answer1 with label=player.question1 %}
{% formfield player.submitted_answer2 with label=player.question2 %}
{% formfield player.submitted_answer3 with label=player.question3 %}
{% formfield player.submitted_answer4 with label=player.question4 %}
{% formfield player.submitted_answer5 with label=player.question5 %}
{% formfield player.submitted_answer6 with label=player.question6 %}
{% formfield player.submitted_answer7 with label=player.question7 %}
{% formfield player.submitted_answer8 with label=player.question8 %}
{% formfield player.submitted_answer9 with label=player.question9 %}
{% formfield player.submitted_answer10 with label=player.question10 %}
{% next_button %}
{% endblock %}
{% block styles %}
{% endblock %}