{{ block content }}
{% if player.subsession.bnum <= player.subsession.numbuyers %}
{% if player.role == 'Buyer' %}
Buyer #{{player.subsession.bnum}} is taking their turn. You are Buyer #{{player.BuyerNumber}}.
Products offered For Sale:
Product
Price
Available
{% if player.BuyerNumber == player.subsession.bnum%}
Buy Product
{{else}}
{{endif}}
{{ for p in player.subsession.get_players() }}
{{if p.role == "Seller"}}
{{if p.offer > 0}}
{% if player.BuyerNumber == player.subsession.bnum%}
{{forloop.counter}}
{{p.offerPrice}}
{{if p.isoffertaken == 1}}
No
{{else}}
Yes
{{endif}}
{% else %}
{{forloop.counter}}
{{p.offerPrice}}
{{if p.isoffertaken == 1}}
No
{{else}}
Yes
{{endif}}
{% endif %}
{{endif}}
{{endif}}
{{endfor}}
{% if player.BuyerNumber == player.subsession.bnum%}
If there are no products available, please press the "Do not buy a product" button to continue.
{{if player.BuyerNumber < player.subsession.bnum}}
You have made your selection. You may press Next now or wait for the other buyers to make their selection.
{{ next_button }}
{{endif}}
{% else %}
{% endif %}
{% else %}
{% if player.role == 'Seller' %}
The table below lists all the products offered for sale during this round. If you offered a product for sale, your product appears in blue. Buyers are currently evaluating these offers. Please wait until all Buyers have made their choices.
Products Offered For Sale:
Product
Price
Available
{{ for p in player.subsession.get_players() }}
{{ if p.role == "Seller" }}
{{ if p.offer > 0 }}
{{if p == player }}