{% extends "global/Page.html" %} {% load otree static %} {% block title %} Who Got Selected? {% endblock %} {% block content %}
|
{% if player.id_in_group == partner1 %}
In this round, you chose the yellow bucket {{ group.yellow_counter1 }} times, the blue bucket {{ group.blue_counter1 }} times, and were {{ group.get_select1_display }} for stage three. A player chose the yellow bucket {{ group.yellow_counter2 }} times, the blue bucket {{ group.blue_counter2 }} times, and was {{ group.get_select2_display }} for stage three. A player chose the yellow bucket {{ group.yellow_counter3 }} times, the blue bucket {{ group.blue_counter3 }} times, and was {{ group.get_select3_display }} for stage three. {% endif %} {% if player.id_in_group == partner2 %} In this round, you chose the yellow bucket {{ group.yellow_counter2 }} times, the blue bucket {{ group.blue_counter2 }} times, and were {{ group.get_select2_display }} for stage three. A player chose the yellow bucket {{ group.yellow_counter1 }} times, the blue bucket {{ group.blue_counter1 }} times, and was {{ group.get_select1_display }} for stage three. A player chose the yellow bucket {{ group.yellow_counter3 }} times, the blue bucket {{ group.blue_counter3 }} times, and was {{ group.get_select3_display }} for stage three. {% endif %} {% if player.id_in_group == partner3 %} In this round, you chose the yellow bucket {{ group.yellow_counter3 }} times, the blue bucket {{ group.blue_counter3 }} times, and were {{ group.get_select3_display }} for stage three. A player chose the yellow bucket {{ group.yellow_counter1 }} times, the blue bucket {{ group.blue_counter1 }} times, and was {{ group.get_select1_display }} for stage three. A player chose the yellow bucket {{ group.yellow_counter2 }} times, the blue bucket {{ group.blue_counter2 }} times, and was {{ group.get_select2_display }} for stage three. {% endif %} | ||