{% extends "global/Page.html" %} {% load otree static %} {% block title %} Random Selection Results {% endblock %} {% block content %}

Thank you for choosing your sample-menu pairs. {{ if player.participant.rand_outcome == "Yes_BDM" }}

We randomly selected a switch-point question, which means you will not be able to complete one of the chosen sample-menu pairs.
We randomly selected {{player.participant.rand_task}} as the meal.
We randomly selected question number {{player.participant.BDM_Num}} as the question, which corresponds to ${{BDM_Payout|to2}}.
Your switch-point for this task was ${{ player.participant.switch_point|to2 }}.


{{if player.participant.switch_point > BDM_Payout}}

Your switch-point was higher than the selected question.
This means you said that you prefer eating {{player.participant.rand_task}} to the money.
You will be able to eat {{player.participant.rand_task}} at the third session, and do not need to attend the second session.

{{endif}} {{if BDM_Payout >= player.participant.switch_point }}

Your switch-point was lower than the selected question.
This means you said that you prefer the money to eating {{player.participant.rand_task}}.
You will receive the money at the third session, and do not need to attend the second session.

{{endif}}
{{ endif }} {{ if player.participant.rand_outcome == "No_BDM" }} We randomly selected the following sample-menu pair, and did not select a switch-point question.
This means you will need to complete the following sample-menu pair:
{{ if player.participant.treatment_used1 == 'Blunder'}} {{ if player.Blunder_Task_Choice == "Option 1" }}

Eat the {{Good_Task}} at the second session.
After eating the {{Good_Task}}, you must choose one of the following foods to eat at the third session:

{{ else }}

Eat the {{Bad_Task}} at the second session.
After eating the {{Bad_Task}}, you must choose one of the following foods to eat at the third session:

{{ endif }} {{ else }} {% with control=True %} {{ if player.Control_Task_Choice == "Option 1" }} {{ include 'Choice/Option1.html'}} {{ else }} {{ include 'Choice/Option2.html'}} {{ endif }} {% endwith %} {{ endif }} {{ endif }}

To finish this session, you will need to complete Parts 3 and 4.
Click the next button to continue.



{% next_button %} {% endblock %}