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

Results

{% if subsession.round_number < Constants.num_rounds %} {% endif %} {% if subsession.round_number == 5 %} {% for p in player_in_all_rounds %} {% endfor %} {% endif %}
Round Puzzle Solved Time Spent (Seconds) Deduction per 10 Seconds (Pence) Number of Moves Made Deduction per Move (Pence) Starting Budget (£) Budget Left (£)
{{ subsession.round_number }} {% if player.puzzle_solved %} Yes {% else %} No {% endif %} {{player.time_spent}} {{player.deduction_per_second_cents}} {{player.num_of_moves}} {{player.deduction_per_move_cents}} {{player.endowment|floatformat:2}} {{player.total_payoff|floatformat:2}}
{{ p.round_number }} {% if p.puzzle_solved %} Yes {% else %} No {% endif %} {{p.time_spent}} {{p.deduction_per_second_cents}} {{p.num_of_moves}} {{p.deduction_per_move_cents}} {{p.endowment|floatformat:2}} {{p.total_payoff|floatformat:2}}
{% if subsession.round_number >= Constants.num_rounds %}
Round {{ paying_round }} has been randomly selected for payment.

You made {{final_move}} moves in {{final_time}} seconds.

Hence you will receive £{{ final_payoff|floatformat:2 }}.
{% endif %}
{% if subsession.round_number <= Constants.num_rounds %}

{% next_button %}
{% endif %}

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