{% extends "global/Page.html" %} {% load otree static %} {% block title %} {% if player.round_number < 10 %} Part 1 - Round {{ subsession.round_number }} {% else %} Part 2 - Round {{ player.round }} {% endif %} - Results {% endblock %} {% block content %}

You have finished {% if player.round_number < 10 %} {{ subsession.round_number }} {% else %} {{ player.round }} {% endif %} of 9 rounds in this Part.

{% if player.round_number == 9 %} The virtual die chose round {{ player.dice_ex }} for Part 1. Please see the corresponding lottery outcome in the table below. {% elif player.round_number == 18 %} The virtual die chose round {{ player.dice_ex }} for Part 1, and round {{ player.dice_ex2 }} for Part 2, from the table below. Please see the corresponding lottery outcomes, and sum them up. {% else %} When you finish the last (9th) round in each Part, one of the 9 exercises will be randomly chosen to realize into your payoff.
{% endif %} {% if player.round_number == 9 or player.round_number == 18 %} So far, you have earned {{ player.participant.vars.totalEarnings }} Experimental Dollars. {% endif %}
Remember : 10 Experimental Dollars (ED) = 1 USD.
This is the history of all your decisions and their outcomes.
{% formfields %}

{% for p in player.in_previous_rounds %} {% endfor %}
Round Your lottery choice Dice roll Lottery outcome (ED)
{{ p.round_number }} {% if p.lottery == 0%}A{% else %}B{% endif %} {{ p.diceplay }} {{ p.outcome }}
{{ player.round_number }} {% if player.lottery == 0%}A{% else %}B{% endif %} {{ player.diceplay }} {{ player.outcome }}


{% endblock %}