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

{% if treatment == 1 %} The instructions are as follows:

You are {{ players }} players.
There is a pool of {{pool}} points. Every player can take between 0 and {{ max }} points from the pool.
After all players make a decision, the remaining points in the pool get multiplied by {{ factor }} and every player receives an equal share.

Your payoff will then be the amount you took plus your share from the pool. Unfortunately the pool has a {{tipping_point}}% chance to break down. If that is the case you will not get any points.
{%else%} The instructions are as follows:

You are {{ players }} players.
There is a pool of {{pool}} points. Every player can take between 0 and {{ max }} points from the pool.
After all players make a decision, the remaining points in the pool get multiplied by {{ factor }} and every player receives an equal share.

Your payoff will then be the amount you took plus your share from the pool. {% endif %}

{% next_button %} {% endblock %}