{% 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 have 60 seconds to make decision. Otherwise, your bid would automatically be your value.

This is round {{ subsession.round_number }}.

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