{{ extends 'global/Page.html' }} {{ block title }}Payoff from First Part{{ endblock }} {{ block content }} {{ formfields }}
The wager you chose in Choice {{ session.ind_incentive_index }} was:
{{ if session.ind_incentive_index == 1 }}
{{ if player.ind_wager_1 == "a_black" }} The marble drawn from Jar A will be black. {{ endif }}
{{ if player.ind_wager_1 == "a_white" }} The marble drawn from Jar A will be white. {{ endif }}
{{ if player.ind_wager_1 == "b_red" }} The marble drawn from Jar B will be red. {{ endif }}
{{ if player.ind_wager_1 == "b_blue" }} The marble drawn from Jar B will be blue. {{ endif }}
{{ elif session.ind_incentive_index == 2 }}
{{ if player.ind_wager_2 == "a_black" }} The marble drawn from Jar A will be black. {{ endif }}
{{ if player.ind_wager_2 == "a_white" }} The marble drawn from Jar A will be white. {{ endif }}
{{ if player.ind_wager_2 == "b_red" }} The marble drawn from Jar B will be red. {{ endif }}
{{ if player.ind_wager_2 == "b_blue" }} The marble drawn from Jar B will be blue. {{ endif }}
{{ else }}
{{ if player.ind_wager_3 == "a_black" }} The marble drawn from Jar A will be black. {{ endif }}
{{ if player.ind_wager_3 == "a_white" }} The marble drawn from Jar A will be white. {{ endif }}
{{ if player.ind_wager_3 == "b_red" }} The marble drawn from Jar B will be red. {{ endif }}
{{ if player.ind_wager_3 == "b_blue" }} The marble drawn from Jar B will be blue. {{ endif }}
{{ endif }}
Drawing from both jars, your classmate drew a
{{ if session.ind_draw_A == "a_black" }} black
{{ else }} white
{{ endif }}
marble from Jar A and a
{{ if session.ind_draw_B == "b_red" }} red
{{ else }} blue
{{ endif }}
marble from Jar B.
{{ if player.ind_payoff_wager == session.ind_draw_A or player.ind_payoff_wager == session.ind_draw_B }}
Your wager was correct, so you receive a payoff of $10 for the first part.
{{ else }}
Your wager was incorrect, so you do not receive any payoff from the first part.
{{ endif }}
Next, we will draw to determine which choice from the second part counts for payoffs.