{% extends "global/Page.html" %} {% load staticfiles otree %} {% block title %} Online Market {% endblock %} {% block content %} {% if subsession.round_number <= session.config.num_of_test_rounds %}

Test round {{ subsession.round_number }} of {{ session.config.num_of_test_rounds }}

{% else %}

Round {{ round_number }} of {{ num_of_rounds }}

{% endif %}

Feedback


{% if player.match_with %} {% if participant.vars.role == "seller" %}

In this round, your costs were {{ player.cost }}. You traded with buyer {{ player.match_with.display_id }} at price {{ player.trade_price }}. Your payoff in this round is {{ player.payoff }}.

{% else %}

In this round, your valuation was {{ player.money }}. You traded with seller {{ player.match_with.display_id }} at price {{ player.trade_price }}. Your payoff in this round is {{ player.payoff }}.

{% endif %} {% else %}

You did not trade in this round. Your payoff in this round is equal to 0.

{% endif %}

Transaction History

Buyer Trading Price Seller
buyer ${ transaction.buyer_id_in_group } you ${ transaction.value } seller ${ transaction.seller_id_in_group } you


{% next_button %} {% endblock %} {% block styles %} {% endblock %} {% block scripts %} {% endblock %}