{% extends "global/Page.html" %} {% load otree static %} {% block styles %} {% endblock %} {% block title %} Create offers — round {{ subsession.round_number }} {% endblock %} {% block content %}

You are a {{ player.role }}.

{% if player.role == 'buyer' %}

The sellers are currently deciding on their offers. Just click "Next" and wait until they finished.

{% else %}

You must decide on your offers now. You have an initial balance of {{ player.initial_balance }}.

Purchase prices per piece for you as a seller:

{{ offers_formset.management_form }}
{% for offer_form in offers_formset %}

Offer #{{ forloop.counter }}

{% endfor %}

Your balance is now:

{% endif %}

{% next_button %}

{% if player.role == 'seller' %} {% endif %} {% endblock %}