{{ block title }} Results {{ endblock }} {{ block content }} {{ if player.role_of_player == 'Seller' }}

In this market you were the {{ player.role_of_player }}. You chose a selling price of {{ group.price }}.

{{ endif }} {{ if player.role_of_player != 'Seller' }}

In this market you were the buyer with a resale price of {{ player.buy_price }}.

The seller chose a selling price of {{ group.price }}.

{{ endif }} {{ for p in group.get_players }} {{ if p.role_of_player != 'Seller' }}

The buyer with the resale price of {{ p.buy_price }} has ordered {{ p.number_of_bottles }}.

{{ endif }} {{ endfor }}

Thus an overall demand of {{ group.total_bottles_sold }} bottles have been ordered.

The seller made a profit of {{ for p in group.get_players }} {{ if p.role_of_player == 'Seller' }} {{ p.payoff }} {{ endif }} {{ endfor }}.

{{ for p in group.get_players }} {{ if p.role_of_player != 'Seller' }}

The buyer with the resale price of {{ p.buy_price }} makes a profit of {{ p.payoff }}.

{{ endif }} {{ endfor }}

Your profit this round is {{ player.payoff }}.


{{ next_button }} {{ endblock }}