{% extends "global/Page.html" %} {% load otree static %} {% block styles %} {% endblock %} {% block title %} {% if french == 0 %} Your Payoff{% else %} Votre Paiement {% endif %} {% endblock %} {% block content %} {% if french == 0 %}
Part I was selected to determine your payoff.
{% if role == 'A' %} We randomly paired you with an orange player, and selected a choice you made for them.
Below you can see this choice.
You chose option {{ option_chosen }}. The wheel of fortune stopped on field {{ field_stopped }}.
You earned your orange player {{ outcome_yielded }} cents.
{% if bonus == 1 %}
The orange player allocated the reward to you.
Therefore, you received a reward of {{ C.max_bonus }} cents.
{% else %}
The orange player allocated the reward to a randomly chosen blue player.
Therefore, you received a reward of 0 cents .
{% endif %}
We randomly paired you with a blue player, and selected a choice they made for them.
Below you can see this choice.
The selected blue player chose option {{ option_chosen }}.
The wheel of fortune stopped on the {{ field_stopped }} field.
The blue player earned you {{ outcome_yielded }} cents.
{% if bonus == 1 %}
You allocated the reward of {{ C.max_bonus }} cents to the matched blue player.
{% else %}
You allocated the reward of {{ C.max_bonus }} cents to a random blue player.
{% endif %}
La partie I a été sélectionnée pour déterminer votre gain.
{% if role == 'A' %} Nous vous avons apparié au hasard avec un joueur orange et sélectionné un choix que vous avez fait pour lui.
Ci-dessous, vous pouvez voir ce choix.
Vous avez choisi l'option {{ option_chosen }}.
La roue de la fortune s'est arrêtée sur le champ {{ field_stopped }}.
Vous avez gagné {{ outcome_yielded }} centimes pour votre joueur orange.
{% if bonus == 1 %}
Le joueur orange vous a donné la récompense.
Par conséquent, vous avez reçu une récompense de {{ C.max_bonus }} centimes.
{% else %}
Le joueur orange a donné la récompense à un joueur bleu choisi au hasard.
Par conséquent, vous avez reçu une récompense de 0 centimes .
{% endif %}
Nous vous avons apparié au hasard avec un joueur bleu et sélectionné un choix qu'il a fait pour vous.
Ci-dessous, vous pouvez voir ce choix.
Le joueur bleu sélectionné a choisi l'option {{ option_chosen }}.
La roue de la fortune s'est arrêtée sur le champ {{ field_stopped }}.
Le joueur bleu vous a rapporté {{ outcome_yielded }} centimes.
{% if bonus == 1 %}
Vous avez donné la récompense de {{ C.max_bonus }} centimes au joueur bleu associé.
{% else %}
Vous avez donné la récompense de {{ C.max_bonus }} centimes à un joueur bleu au hasard.
{% endif %}
| {% for ff, ft, p in fields %} |
{% if french == 0 %} Fields {% else %} Champs {% endif %} {{ ff }} -{{ ft }} ({{ p }}%) |
{% endfor %}
|
|
{% for o, ff in oo_1 %}
{{ o }} | {% endfor %}
|
|
{% for o,ff in oo_2 %}
{{ o }} | {% endfor %}
Your payoff from part I thus amounts to {{ payoff }} cents.
{% else %}Votre gain de la partie I s'élève donc à {{ payoff }} centimes.
{% endif %} {% next_button %} {% endblock %}