{{ extends 'global/Page.html' }} {{ block title }}Draw for Payoffs: Second Part{{ endblock }} {{ block content }}

One of your classmates will now draw to determine which of the 3 group choices in the second part of the experiment will count for payoffs. After this choice is selected, a marble will be drawn for both jars, and if your group's wager was correct in that choice, you will win a $10 payoff.

As a reminder, your groups chose the following three wagers in the second part:

Choice 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 }}

Choice 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 }}

Choice 3: {{ 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 }}

{{ next_button }} {{ endblock }}