{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results {% endblock %} {% block content %} The value of your private project is: {{ player.priv_good_sig }} + {{ player.signal_1 }} + {{ player.signal_2 }} = {{ player.priv_good_value }}

The value of the group project is: {{ player.pub_good }} {% for p in others_in_group %} + {{ p.pub_good }} {% endfor %} = {{ group.pub_good_value }}

The number of people in your group that chose the group project (including yourself) was: {{ group.num_contr }} out of 3

You chose: {% if player.contribute == 1%} Group Project {% else %} Private Project {% endif %}

You received: {{ player.project }}

The payoff for you this round is: {{ player.round_payoff }} points

{% if player.treatment == 2 %}
The table below illustrates how many group members chose the group project in each stage
Stage # group members who chose the group project
1 {{ group.period_1_contr }}
2 {{ group.period_2_contr }}
3 {{ group.period_3_contr }}
{% endif %}

{% next_button %}

{% if subsession.round_number != 1 %} {% if player_in_previous_round.treatment == player.treatment %}
Round history
{% include Constants.history_template %}
{% endif %} {% endif %}

{% formfield player.treatment label="" %} {% endblock %} {% block scripts %} {% endblock %}