{% extends "global/Page.html" %} {% load otree %} {% block title %} Results {% endblock %} {% block content %}

{% if player.is_winner %} You won the price war today! You earned {{player.payoff}}. {% elif player.is_tie %} You and your opponent set the same price! You both earned {{player.payoff}} {% else %} You did not set a price lower than your opponent or you set a price too high for your customers to pay. {% endif %}

Your bid Your payoff Total earned so far
{{ player.bid_amount}} {{ player.payoff }} {{ player.participant.payoff}}
{% if player.session.config.show_bids_chart_after_each_round %}
{% endif %} {% if player.session.config.show_payoffs_chart_after_each_round %}
{% endif %}
{% next_button %} {% endblock %}