Results.html
{% extends "global/Page.html" %}

{% block title %}Results{% endblock %}
{% block content %}

    <p>
        {% 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 %}
    </p>

    <table class="table" style="width:400px">

        <tr>
            <th>Your bid</th>
            <th>Winning bid</th>
            <th>Second Highest bid</th>
            <th>Your payoff</th>
        </tr>

    <tr>
        <td>{{ player.bid }}</td>
        <td>{{ group.highest_bid }}</td>
        <td>{{ group.second_highest_bid }}</td>
        <td>{{ player.payoff }}</td>
    </tr>

    </table>

    {% next_button %}

{% endblock %}