{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results {% endblock %} {% block content %}
| Alternatives: | Your Payoffs: | Others Players' Payoffs | |||||
|---|---|---|---|---|---|---|---|
| Player {{player.id_in_group}} | {% for p in others_in_group %}Player {{p.id_in_group}} | {% endfor %}||||||
| A | {{ player.player_payoff_1 }} | {% for p in others_in_group %}{{ p.player_payoff_1 }} | {% endfor %}|||||
| B | {{ player.player_payoff_2 }} | {% for p in others_in_group %}{{ p.player_payoff_2 }} | {% endfor %}|||||
| C | {{ player.player_payoff_3 }} | {% for p in others_in_group %}{{ p.player_payoff_3 }} | {% endfor %}|||||
| D | {{ player.player_payoff_4 }} | {% for p in others_in_group %}{{ p.player_payoff_4 }} | {% endfor %}|||||
You made the following choices:
A: {{player.vote_choice_A}}
B: {{player.vote_choice_B}}
C: {{player.vote_choice_C}}
D: {{player.vote_choice_D}}
The other players made the following choices:
| Player {{p.id_in_group}}: | {% endfor %}
|---|
| A: {{p.vote_choice_A}} B: {{p.vote_choice_B}} C: {{p.vote_choice_C}} D: {{p.vote_choice_D}} |
{% endfor %}
Each alternative received the following number of points:
| A: | B: | C: | D: |
|---|---|---|---|
| {{ group.average_A }} | {{ group.average_B }} | {{ group.average_C }} | {{ group.average_D }} |
This resulted in the following second-stage selection:
Alternatives {{ group.runoff_cand_1 }} vs. {{ group.runoff_cand_2 }}
Each of these selected alternatives received the following number of votes:
{{group.runoff_cand_1}}: {{group.runoff_total_1}}
{{group.runoff_cand_2}}: {{group.runoff_total_2}}
The winner of this selection process was alternative {{ group.winner }}.
Therefore, your payoff for this round was {{ player.round_payoff }}.
{% next_button %} {% endblock %}