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

Instructions

        You will be playing a common pool resource game twice.
        Here is the first time.
        You will be in a randomly formed group of {{Constants.players_per_group}} participants.
        Each group now has a total of {{Constants.endowment}} points 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}} times.
        One points that you extract will be converted to one SGD (real money).
        At the end of the game, if there is more than 100 points remained in the pool,
                                the pool will be refilled, and the next group will continue the game.
        However, if more than 100 points are extracted in total at the end of the game,
        the pool will not be refilled, and the next group will not have chance to receive any money.

    
        This is the end of the first game.
        You total extract {{total_payoff}} points.
        Your group total extract {{total_group_payoff2}},
        so the resource is {% if total_group_payoff2 > 100 %}exhausted {% else %} sustained {% endif %}.
        Click NEXT for the second time of game.
    
{% next_button %} {% endblock %}