{% extends "global/Page.html" %} {% load otree static %} {% block title %} Part 3 - Round {{ subsession.round_number }} - Results {% endblock %} {% block content %}

You have finished {{ subsession.round_number }} of {{ Constants.num_rounds }} rounds.

{% if player.round_number < 9 %} After you finish the last (9th) round,
one of your group choices will be randomly selected to realize into the payoffs of all group members
{% elif player.round_number == 9 %} The virtual die chose round {{ group.dice_ex3 }} to realize into your groupmates' payoffs. Please see the corresponding group choice and the lottery outcome in the table below. {% endif %}

Remember : 10 Experimental Dollars (ED) = 1 USD.
This is the history of all your group decisions and their outcomes:
{% formfields %}

{% for p in group.in_previous_rounds %} {% endfor %}
Round Your group choice Dice roll Lottery outcome (ED)
{{ p.round_number }} {% if p.choiceG == 0%}A{% else %}B{% endif %} {{ p.diceplay3 }} {{ p.outcomeG }}
{{ group.round_number }} {% if group.choiceG == 0%}A{% else %}B{% endif %} {{ group.diceplay3 }} {{ group.outcomeG }}



{% endblock %}