{% extends "global/Page.html" %} {% load otree static %} {% block head_title %} Study {% endblock %} {% block styles %} {% endblock %} {% block content %}

Result

{% if subsession.round_number <= 10 %} {% if time_spent < my_page_timeout_seconds %} {% if player.correct == 1 %} You chose the correct answer for Game {{game_number}}.
{% if question_chosen == 34 %}
You have solved {{number_correct|floatformat:0}} question(s) so far.
{% endif %} {% if question_chosen < 34 %}
Your remaining payoff is £{{payoff1|floatformat:2}}.
{% endif %} {% else %} You chose the wrong answer for Game {{game_number}}.
{% if question_chosen == 34 %}
You have solved {{number_correct|floatformat:0}} question(s) so far.
{% endif %} {% if question_chosen < 34 %}
Your remaining payoff is £{{payoff1|floatformat:2}}.
{% endif %} {% endif %} {% endif %} {% if time_spent == my_page_timeout_seconds %} {% if player.correct == 1 %} You chose the correct answer for Game {{game_number}}.
{% if question_chosen == 34 %}
You have solved {{number_correct|floatformat:0}} question(s) so far.
{% endif %} {% if question_chosen < 34 %}
Your remaining payoff is £{{payoff1|floatformat:2}}.
{% endif %} {% else %} You chose the wrong answer for Game {{game_number}} or you were too slow.
{% if question_chosen == 34 %}
You have solved {{number_correct|floatformat:0}} question(s) so far.
{% endif %} {% if question_chosen < 34 %}
Your remaining payoff is £{{payoff1|floatformat:2}}.
{% endif %} {% endif %} {% endif %} {% endif %} {% if subsession.round_number == 10 %} {% if question_chosen == 34 %}
You have solved {{number_correct|floatformat:0}} question(s) in this round.
{% endif %} {% if question_chosen < 34 %}
Your payoff for this round is £{{payoff1|floatformat:2}}.
{% endif %} {% endif %}

Seconds left on this page:

{{ form.errors }} {% endblock %} {% block scripts %} {% endblock %}