{% extends "global/Page.html" %} {% load otree %} {% block title %}Results{% endblock %} {% block content %}

Match {{ player.match }}

Round {{ player.round }}

Your Role is {% if player.cost_role == 1 %} A {% else %} B {% endif %}


You {% if player.volunteer %} invested {% else %} did not invest {% endif %} and the other member of your group {% if player.other_volunteer %} invested{% else %} did not invest{% endif %}.

As a result, you receive {{ player.points }} and the other member receives {{ player.other_points }}.

{% next_button %}


Outcomes of Current Match

{% for p in player_in_all_rounds %} {% endfor %}
Round Your Choice Other Choice Your Points Other Points
{{ p.round }} {% if p.volunteer %} invest {% else %} not invest {% endif %} {% if p.other_volunteer %} invest {% else %} not invest {% endif %} {{ p.points }} {{ p.other_points }}

{% include Constants.instructions_fixed_cost_template %} {% endblock %}