{% block title %}Results{% endblock %} {% block content %}
{% if player.is_winner %} You won the auction! {% if player.payoff == 0 %} Your bid amount was higher than the actual value of the item. Your payoff is therefore zero. {% endif %} {% else %} You did not win the auction. {% endif %}
Your bid | Winning bid | Second highest bid | Your payoff |
---|---|---|---|
{{ player.bid_amount }} | {{ group.highest_bid }} | {{ group.second_highest_bid }} | {{ player.payoff }} |