{% extends "global/Page.html" %} {% load otree %} {% block title %} Purchase (Period {{ subsession.round_number }} of {{ Constants.num_rounds }}) {% endblock %} {% block content %}

You are buyer.

Below are the listed prices from the sellers:
{% for p in group.get_players %} {% if 'seller' in p.role %} Price from {{p.role}}: {{p.seller_proposed_price}}
{% endif %} {% endfor %}

{% formfield group.seller_id label="Please make a purchase decision:" %} {% next_button %} {% include Constants.instructions_template %} {% endblock %}