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

Match {{ player.match }}

Round {{ player.round }}

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

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 %}.


Outcomes of Current Match

{% for p in player_in_previous_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 }}

{% formfields %}

{% next_button %}


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