{% extends "global/Page.html" %}
{% load otree %}
{% block title %}Results{% endblock %}
{% block content %}
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 %}
| 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 }} |