{{ extends 'global/Page.html' }} {{ block title }}Results{{ endblock }} {{ block content }}
{% if player.is_winner %} You won the auction! {% if is_greedy %} However, your bid amount was higher than the 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 | Actual value | Your payoff |
|---|---|---|---|
| {{ player.bid_amount }} | {{ group.highest_bid }} | {{ group.item_value }} | {{ player.payoff }} |