{% 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 %}
This was de last round of the group task. Next, you will be asked to fill in some questions about this task. Please click on the button below to proceed to these questions.
{% next_button %}
{% endblock %}