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

Result

{% if subsession.round_number <= Constants.num_rounds %} {% if player.correct == 1 %} You chose the correct answer for Game {{ subsession.round_number }} {% if player.time_spent > player.my_page_timeout_seconds %} but you exceeded the time limit {% endif %} {% if player.time_spent <= player.my_page_timeout_seconds %} within the time limit {% endif %} .

The time limit for this game was {{player.my_page_timeout_seconds|floatformat:0 }} seconds.

You finished the game in {{player.time_spent|floatformat:0 }} seconds.
{% if player.time_spent > player.my_page_timeout_seconds %}
You exceeded the time limit. Therefore your remaining payoff is £ {{player.payoff_unknown|floatformat:2}}.
{% endif %} {% if player.time_spent <= player.my_page_timeout_seconds %}
You did not exceed the time limit. Therefore your remaining payoff is £ {{player.payoff_unknown|floatformat:2}}.
{% endif %} {% else %} You chose the wrong answer for Game {{ subsession.round_number }}.

The time limit for this game was {{player.my_page_timeout_seconds|floatformat:0 }} seconds.

You spent {{player.time_spent|floatformat:0 }} seconds.
{% if player.time_spent > player.my_page_timeout_seconds %}
You exceeded the time limit. Therefore your remaining payoff is £ {{player.payoff_unknown|floatformat:2}}.
{% endif %} {% if player.time_spent <= player.my_page_timeout_seconds %}
You did not exceed the time limit. Therefore your remaining payoff is £ {{player.payoff_unknown|floatformat:2}}.
{% endif %} {% endif %} {% endif %} {% if subsession.round_number == Constants.num_rounds %}
Your payoff for this round is £ {{player.payoff_unknown|floatformat:2}}.
{% endif %}

Seconds left on this page:

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