{% extends "global/Page.html" %} {% load otree %} {% block title %} Second-price sealed-bid auction {% endblock %} {% block content %}

You are one of {{ Constants.players_per_group }} players who are biding in an auction.

Your value of the good is {{ player.value }}.

You are in {{ subsession.round_number }} round now.

If your bid is the highest, then you will get the item and your payoff is evaluation minus bid. If not, then you will not get the item and your payoff is 0.

{% formfields %} {% next_button %} {% if player.round_number != 1 %}
History Table

{% for p in player.in_previous_rounds %} {% endfor %}
Round Your bid Win? Price Payoff Total earnings
{{p.round_number}} {{p.bid}} {{p.is_winner}} {{p.price}} {{p.payoff}} {{participant.payoff}}

{% endif %} {% endblock %}