{% extends "global/Page.html" %} {% load otree static %} {% block title %}
| 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}} |
Next