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

{% if player.is_winner %} You won the auction! {% if is_greedy %} However, the price of the item (the second highest bid) was higher than your actual value of the item. Your payoff is therefore zero. {% elif player.payoff == 0 %} Your payoff, however, is zero. {% endif %} {% else %} You did not win the auction. {% endif %}

Your bid Winning bid Second Highest bid Your payoff
{{ player.bid }} {{ group.highest_bid }} {{ group.second_highest_bid }} {{ player.payoff }}
{% next_button %} {% endblock %}