{% extends "global/Page.html" %} {% load otree %} {% block title %} Round {{ subsession.round_number }} of {{ Constants.num_rounds }} {% endblock %} {% block content %}

Instructions

        You will be playing the common pool resource game in two levels.
        Here is the first level.
        You will be in a randomly formed group of {{Constants.players_per_group}} participants.
        Each group now has a total of {{Constants.endowment}} in the pool.
        Each participant decides how much she or he is going to extract from the pool.
        You can extract either 1, 2, or 3 points every time with a total of {{Constants.num_rounds}} rounds.
        One points that you extract will be converted to one SGD (real money).
        At the end of this level, if there are more than 50 points remained in the pool,
        the pool will be refilled, and the next group will continue the game.
        However, if more than 50 points are extracted by your group, the pool will not be refilled,
        and the next group will not have chance to receive any money.

    

Round history

{% for p in player_in_previous_rounds %} {% endfor %}
Round You
{{ p.round_number }} You extract {{p.contribution}}

You total extract {{total_payoff}} so far.

{% formfield player.contribution label="I extract:" %} {% next_button %} {% endblock %}