{% extends "global/Page.html" %} {% load otree %} {% block title %} Results {% endblock %} {% block content %}
The results are shown in the following table.
| Total production: | {{ group.total_units }} units |
| Unit selling price: | {{ group.total_capacity }} – {{ group.total_units }} = {{ group.unit_price }} |
| Your firm produced: | {{ player.units }} units |
| Your profit: | {{ player.payoff }} |
| The other firms produced: | {% for p in player.get_others_in_group %}{{ p.units }} units | {% endfor %}
| The other firms earned profits of: | {% for p in player.get_others_in_group %}{{ p.payoff }} points | {% endfor %}
The previous round's results are shown in the following table.
| Total production in previous round: | {{ group.prev_total_units }} units |
| Individual production in previous round: | {% for p in player.get_others_in_group %}{{ p.prev_units }} units | {% endfor %}