{% extends "global/Page.html" %}
{% load otree %}
{% block title %}Investment Decision{% endblock %}
{% block content %}
If there is at least one investment in your group, then both participants will receive {{ Constants.general_benefit }}.
Your cost of investment is {% if player.cost_role == 1 %} {{ Constants.volunteer_costH }}{% else %} {{ Constants.volunteer_costL }}{% endif %}.
The other participant's cost of investment is {% if player.cost_role == 2 %} {{ Constants.volunteer_costH }}{% else %} {{ Constants.volunteer_costL }}{% endif %}.
| 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 }} |
{% next_button %}