{% extends "global/Page.html" %} {% load otree static %} {% block title %} Cap and Trade! {% endblock %} {% block content %}
Your company needs enough emission permits to keep operating {% if player.round_number != Constants.num_rounds %} the next {{ group.l }} days! {%else%} tomorrow! {% endif%}
Emissions equals the square of your production level, which ranges between 1 and 12 units.
Previously, you had {{ player.permits }} permits. So, you could produce {{ player.production }} units.
{% if player.role == 'Buyer' %}However, you can purchase extra permits from another company and expand production! Notice your profit equals your production level MINUS the cost you incur for purchasing permits.
The other company has asked ${{ group.p }} for the {{ group.q }} permits you wanted to buy.
{% if group.a == True %}You have accepted the deal!
Now, you have {{ player.permits }} permits and produce {{ player.production }}. Because you payed ${{ group.p }}, you profit is ${{ player.profit }}.
{% else %}You have NOT accepted the deal!
{% endif %} {% else %}However, you can sell some permits to another company and make extra money!. Notice your profit equals your production level PLUS the revenuws from selling permits.
The other company wanted to buy {{ group.q }} permits and you asked ${{ group.p }} for them.
{% if group.a == True %}The other company has accepted the deal!
Now, you have {{ player.permits }} permits and produce {{ player.production }} units. Because you made ${{ group.p }}, you profit is ${{ player.profit }}.
{% else %}The other company has NOT accepted the deal!
{% endif %} {% endif %} {% if player.round_number != Constants.num_rounds %} {% else %} The game has ended. Thanks por participating! {% endif %}| Day | {% for p in group.in_all_rounds %}{{ p.round_number }} | {% endfor%}
| Price | {% for p in group.in_all_rounds %}{{ p.p }} | {% endfor%}
| Quantity | {% for p in group.in_all_rounds %}{{ p.q }} | {% endfor%}
| P/Q | {% for p in group.in_all_rounds %}{{ p.r }} | {% endfor%}
| Production | {% for p in player.in_all_rounds %}{{ p.production }} | {% endfor%}
| Profit | {% for p in player.in_all_rounds %}{{ p.profit }} | {% endfor%}