{% extends "global/Base.html" %} {% load otree_tags %} {% block title %} Results (Period {{ subsession.round_number }} of {{ Constants.num_rounds }} ) {% endblock %} {% block content %} You are {{ player.role }}. {% if group.seller_id %} {% if player.role == 'buyer' %} You bought from seller {{ group.seller_id }} at a price of {{ group.sale_price }}. The quality grade of your purchase is {{ seller.get_seller_proposed_quality_display }}. {% else %} The buyer purchased a {{ seller.get_seller_proposed_display }} grade from {% if player == seller %}you{% else %}{{ seller.role }}{% endif %} at a price of {{ group.sale_price }}. {% endif %} {# buyer bought nothing #} {% elif player.role == 'buyer' %} You bought nothing in this period. {% else %} The buyer bought nothing in this period. {% endif %} Thus your period payoff is {{ player.payoff }}.

{% next_button %}

{% include Constants.instructions_template %} {% endblock %}