{% extends "global/Page.html" %} {% load otree_tags %} {% block title %} Outcome of this round {% endblock %} {% block content %}

You are {{role}}.

Person 1 {{p1_choice}}.

Person 2 {{p2_choice}}.

Person 3 {{p3_choice}}.

{% if player.volunteer %} Your outcome this round: you ({{role}}) gave up {{ Constants.volunteer_cost }} for the group. That's why you made {{ player.payoff }} in this round of the group task. {% elif num_volunteers > 0 %} Your outcome this round: you ({{role}}) did not give up any points for the group, but at least one of the other group members did. That's why you made {{ player.payoff }} in this round of the group task. {% else %} Your outcome this round: you ({{role}}) did not give up any points for the group, and the other group members didn't give up any points either. That's why you made {{ player.payoff }} in this round of the group task. {% endif %}

If you want to go to the next round, please click the button below.

{% next_button %}

{% endblock %}