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

Result

{% if subsession.round_number <= 10 %} {% if player.correct == 1 %} You chose the correct answer for Game {{game_number}}.
{% if question_chosen == 34 %}
You have solved {{number_correct|floatformat:0}} game(s) so far.
{% endif %} {% if question_chosen == 35 %}
You have solved {{number_correct|floatformat:0}} game(s) so far.
{% endif %} {% if question_chosen < 34 %}
Your remaining payoff is €{{payoff1|floatformat:2}}.
{% endif %} {% endif %} {% if player.correct == 0 %} You chose an incorrect answer for Game {{game_number}}.
{% if question_chosen == 34 %}
You have solved {{number_correct|floatformat:0}} game(s) so far.
{% endif %} {% if question_chosen == 35 %}
You have solved {{number_correct|floatformat:0}} game(s) so far.
{% endif %} {% if question_chosen < 34 %}
Your remaining payoff is €{{payoff1|floatformat:2}}.
{% endif %} {% endif %} {% if player.correct == -1 %} You did not provide an answer for Game {{game_number}}.
{% if question_chosen == 34 %}
You have solved {{number_correct|floatformat:0}} game(s) so far.
{% endif %} {% if question_chosen == 35 %}
You have solved {{number_correct|floatformat:0}} game(s) so far.
{% endif %} {% if question_chosen < 34 %}
Your remaining payoff is €{{payoff1|floatformat:2}}.
{% endif %} {% endif %} {% endif %} {% if subsession.round_number == 10 %} {% if question_chosen == 34 %}
You have solved {{number_correct|floatformat:0}} game(s) in this round.
{% endif %} {% if question_chosen == 35 %}
You have solved {{number_correct|floatformat:0}} game(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 %}