{{ extends 'global/Page.html' }} {{ block title }}Results from Practice Choice 2{{ endblock }} {{ block content }}
You selected
{{ if player.practice_choice_1 == "a_white" }}
Wager 1: The marble drawn from Jar A will be white.
{{ else }}
Wager 2: The marble drawn from Jar B will be red.
{{ endif }}
Draws from Jar A and Jar B have been simulated.
The marble drawn from Jar A is white and the marble drawn from Jar B is red. Because you chose
{{ if player.practice_choice_1 == "a_white" }}
Wager 1, your wager was correct, so if this were an official round you would receive a payoff of $10 for this choice. Note that the draw from Jar B is irrelevant to you in this case, since the wager you chose is not about Jar B.
{{ else }}
Wager 2, your wager was correct, so if this were an official round you would receive a payoff of $10 for this choice. Note that the draw from Jar A is irrelevant to you in this case, since the wager you chose is not about Jar A.
{{ endif }}
This is the end of the practice choices.