{% extends "global/Page.html" %} {% load otree %} {% block title %} Control Questions {% endblock %} {% block content %} {% if player.sum_correct == 8 %}
Congratulations. You solved all control questions correctly. Please wait for the other participants to finish the control questions.
{% else %}
Not all answers were correct. Please try to answer these questions again.
{% endif %} {% if player.q1_correct == 0 %}
Question 1
{{ q1_label }} {% formfield player.q1_answer_2 %}

{{ q1_helptext }}

{% endif %} {% if player.q2_correct == 0 %}
Question 2
{{ q2_label }} {% formfield player.q2_answer_2 %}

{{ q2_helptext }}

{% endif %}
{% if player.q3_correct == 0 or player.q4_correct == 0 or player.q5_correct == 0 %}
Question 3
{{ q3_scenario }}
{% endif %} {% if player.q3_correct == 0 %} {{ q3_label }} {% formfield player.q3_answer_2 %}

{{ q3_helptext }}

{% endif %} {% if player.q4_correct == 0 %} {{ q4_label }} {% formfield player.q4_answer_2 %}

{{ q4_helptext }}

{% endif %} {% if player.q5_correct == 0 %} {{ q5_label }} {% formfield player.q5_answer_2 %}

{{ q5_helptext }}

{% endif %}
{% if player.q6_correct == 0 or player.q7_correct == 0 or player.q8_correct == 0 %}
Question 4
{{ q4_scenario }}
{% endif %} {% if player.q6_correct == 0 %} {{ q6_label }} {% formfield player.q6_answer_2 %}

{{ q6_helptext }}

{% endif %} {% if player.q7_correct == 0 %} {{ q7_label }} {% formfield player.q7_answer_2 %}

{{ q7_helptext }}

{% endif %} {% if player.q8_correct == 0 %} {{ q8_label }} {% formfield player.q8_answer_2 %}

{{ q8_helptext }}

{% endif %}
{% next_button %} {% endblock %}