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

You are a {{ player.role }}.

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

You have an initial balance of {{ player.initial_balance }}.

The following things are offered on the market:

{{ purchases_formset.management_form }}

Your balance is now:

{% else %}

You're offering the following things:

Your products are now being offered on the market. Just click "Next" and wait until the customer has finished.

{% endif %}

{% next_button %}

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