{{ extends 'global/Page.html' }} {{ block title }}Payoff from First Part{{ endblock }} {{ block content }}
Your classmate drew {{ session.ind_incentive_index }}, so the choice from the first part which determined your payoff for this part was Choice {{ session.ind_incentive_index }}.
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 }}