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

Result

{% if player.correct == 1 %} {% if my_page_timeout_seconds == 300 %} There was no time limit for Game {{game_number}}.

You chose the correct answer for this game.

Your remaining payoff is €{{payoff1|floatformat:2}}.
{% else %} The time limit for Game {{game_number}} was {{my_page_timeout_seconds}} seconds.

You chose the correct answer for this game.

Your remaining payoff is €{{payoff1|floatformat:2}}.
{% endif %} {% endif %} {% if player.correct == 0 %} {% if my_page_timeout_seconds == 300 %} There was no time limit for Game {{game_number}}.

You chose an incorrect answer for this game.

Your remaining payoff is €{{payoff1|floatformat:2}}.
{% else %} The time limit for Game {{game_number}} was {{my_page_timeout_seconds}} seconds.

You chose an incorrect answer for this game.

Your remaining payoff is €{{payoff1|floatformat:2}}.
{% endif %} {% endif %} {% if player.correct == -1 %} {% if my_page_timeout_seconds == 300 %} There was no time limit for Game {{game_number}}.

You did not provide an answer for this game.

Your remaining payoff is €{{payoff1|floatformat:2}}.
{% else %} The time limit for Game {{game_number}} was {{my_page_timeout_seconds}} seconds.

You did not provide an answer for this game.

Your remaining payoff is €{{payoff1|floatformat:2}}.
{% endif %} {% endif %} {% if subsession.round_number == 10 %}
Your payoff for this round is €{{payoff1|floatformat:2}}.
{% endif %} {% if subsession.round_number == 20 %}
Your payoff for this round is €{{payoff1|floatformat:2}}.
{% endif %} {% if subsession.round_number == 30 %}
Your payoff for this round is €{{payoff1|floatformat:2}}.
{% endif %} {% if subsession.round_number == 40 %}
Your payoff for this round is €{{payoff1|floatformat:2}}.
{% endif %}

Seconds left on this page:

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