{% extends "global/Page.html" %}
{% load otree %}
{% block title %}
Round
{% endblock %}
{% block content %}
You have {{ Constants.endowment }}.
Position
Your coordinator indicated that your group is in Position
{% if player.leader_role == "Attacker" %}
A.
{% else %}
Z.
{% endif %}
{% if player.leader_role == "Attacker" %}
As a reminder, this means that if your group invests more points in the Challenge pool than the other group, you receive all the points that the other group Kept.
If not, you earn the points that you Kept.
{% else %}
As a reminder, this means that if your group invests less than the other group in the Challenge pool, you lose all the points that your group Kept to the other group.
If not, you earn the points that you Kept.
{% endif %}
Challenge pool
How many points do you want to invest into your group's Challenge pool (in whole numbers)?
{% formfield player.contribution_confl label="" %}
Keep
How many points do you want to Keep (in whole numbers)?
{% formfield player.contribution_keep label="" %}
{% next_button %}
{% endblock %}