{% extends "global/Page.html" %} {% load otree static %} {% block title %} Round Results
Round {{ subsession.round_number }} of {{ Constants.num_rounds }}
{% endblock %} {% block content %} The below table lists both your and your group members' payoffs for selecting the various alternatives, as well as how many votes each has been allocated this round. Your player number, votes, and payoffs are highlighted in yellow. The alternative that has been selected has been highlighted in blue. The score each player chose for each alternative is listed in bold next to that alternative's payoff:| Player: | {% for p in players %}{{p.id_in_group}} {% if p.id_in_group == player.id_in_group %} (You) {% endif %} | {% endfor %}||
|---|---|---|---|
| Votes: | {% for p in players %}{{ p.votes }} | {% endfor %}||
| Alternatives | Players' Payoffs | ||
| A | {% for p in players %}{{ p.player_payoff_1_star }} ({{p.STAR_A}}) | {% endfor %}||
| B | {% for p in players %}{{ p.player_payoff_2_star }} ({{p.STAR_B}}) | {% endfor %}||
| C | {% for p in players %}{{ p.player_payoff_3_star }} ({{p.STAR_C}}) | {% endfor %}||
| D | {% for p in players %}{{ p.player_payoff_4_star }} ({{p.STAR_D}}) | {% endfor %}||
The chart above summarizes the voting decisions for each player. The first column for every alternative is the total score for that alternative while the second is the total number of votes that alternative received in the runoff.