{% extends "global/Page.html" %} {% load otree %} {% block title %} Results {% endblock %} {% block content %}
{% if player.is_winner %} You won the auction! {% else %} You did not win the auction! {% endif %}
Your value | Your bid | Winning bid | Second-Highest Bid | You Paid | Your payoff |
---|---|---|---|---|---|
{{ player.private_value }} | {{ player.bid_amount }} | {{ group.highest_bid }} | {{ group.second_highest_bid }} | {% if player.is_winner %} {{ group.second_highest_bid }} {% else %} 0 {% endif %} | {{ player.payoff|floatformat:"-2" }} |