{% extends "global/Page.html" %} {% load otree static %} {% block title %}
Results
{% endblock %} {% block content %}

{% if subsession.round_number < Constants.num_rounds %} {% endif %} {% if subsession.round_number >= Constants.num_rounds %} {% for p in player_in_all_rounds %} {% endfor %} {% endif %}
Round Puzzle Solved Time Spent (Seconds) Deduction per 10 Seconds Deduction per Move Number of Moves Made Endowment Total Payoff
{{ subsession.round_number }} {% if player.puzzle_solved %} Yes {% else %} No {% endif %} {{player.time_spent}} {{player.deduction_per_second}} {{player.deduction_per_move}} {{player.num_of_moves}} {{player.endowment}} {{player.total_payoff}}
{{ p.round_number }} {% if p.puzzle_solved %} Yes {% else %} No {% endif %} {{p.time_spent}} {{p.deduction_per_second}} {{p.deduction_per_move}} {{p.num_of_moves}} {{p.endowment}} {{p.total_payoff}}
{% if subsession.round_number >= Constants.num_rounds %} The paying round is Round {{ paying_round }}. You will receive {{ final_payoff }} Euro. {% endif %}

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