{% 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 %}