{% extends "global/Page.html" %} {% load otree static %} {% block title %} 2nd-Price Sealed-Bid Auction {% endblock %} {% block content %}



In Round {{ subsession.round_number }} of {{ Constants.num_rounds }}, you are one of {{ Constants.players_per_group }} players who are bidding in an auction.

Your value is {{ player.value }} cool

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

{% for p in player.in_previous_rounds %} {% endfor %}
Round Your bid Win? Price
{{ p.round_number }} {{ p.bid }} {% if p.is_winner == True %} Yes {% else %} No {% endif %} {{ p.price }}

{% endif %} {% endblock %}