{{ extends 'global/Page.html' }} {{ block title }}Payoff from Second Part{{ endblock }} {{ block content }} {{ formfields }}

The wager you chose in Choice {{ session.group_incentive_index }} was: {{ if session.ind_incentive_index == 1 }} {{ if player.group_leader_choice_1 == "a_black" }} The marble drawn from Jar A will be black. {{ endif }} {{ if player.group_leader_choice_1 == "a_white" }} The marble drawn from Jar A will be white. {{ endif }} {{ if player.group_leader_choice_1 == "b_red" }} The marble drawn from Jar B will be red. {{ endif }} {{ if player.group_leader_choice_1 == "b_blue" }} The marble drawn from Jar B will be blue. {{ endif }} {{ elif session.ind_incentive_index == 2 }} {{ if player.group_leader_choice_2 == "a_black" }} The marble drawn from Jar A will be black. {{ endif }} {{ if player.group_leader_choice_2 == "a_white" }} The marble drawn from Jar A will be white. {{ endif }} {{ if player.group_leader_choice_2 == "b_red" }} The marble drawn from Jar B will be red. {{ endif }} {{ if player.group_leader_choice_2 == "b_blue" }} The marble drawn from Jar B will be blue. {{ endif }} {{ else }} {{ if player.group_leader_choice_3 == "a_black" }} The marble drawn from Jar A will be black. {{ endif }} {{ if player.group_leader_choice_3 == "a_white" }} The marble drawn from Jar A will be white. {{ endif }} {{ if player.group_leader_choice_3 == "b_red" }} The marble drawn from Jar B will be red. {{ endif }} {{ if player.group_leader_choice_3 == "b_blue" }} The marble drawn from Jar B will be blue. {{ endif }} {{ endif }}

Drawing from both jars, your classmate drew a {{ if session.group_draw_A == "a_black" }} black {{ else }} white {{ endif }} marble from Jar A and a {{ if session.group_draw_B == "b_red" }} red {{ else }} blue {{ endif }} marble from Jar B.

{{ if player.group_payoff_wager == session.group_draw_A or player.group_payoff_wager == session.group_draw_B }} Your wager was correct, so you receive a payoff of $10 for the second part. {{ else }} Your wager was incorrect, so you do not receive any payoff from the first part. {{ endif }}

{{ next_button }} {{ endblock }}