{% extends "global/Page.html" %} {% block title %}PlaceBid{% endblock %} {% block content %}

{% if player.round_number >= 4 %} You are one of {{ Constants.players_per_group }} players who are bidding in this auction. The players you are bidding against have been randomly assigned {% elif player.round_number == 1%} You are one of {{ Constants.players_per_group }} players who are bidding in this auction. The players you are bidding against have been randomly assigned . Remember, you will be playing with these people again in the next round. {% else %} You are on of {{ Constants.players_per_group }} players who are bidding in this auction. The players you are bidding against are the same players you have bid against last time. {% endif %}

If you do not place a bid before the timer runs out, a bid of 0 will be automatically placed for you.

Your personal (and private) value of the item is {{ player.value }}.

Please make your bid now. The amount can be between {{ Constants.min_allowable_bid }} and {{ Constants.max_allowable_bid }}, inclusive.

{% formfields %}

{% if player.round_number != 1 %} Your results from previous rounds can be found below to consider before placing your bid.

History Table

{% for p in player.in_previous_rounds %} {% endfor %}
Round Your Bids Your Private Value Did you win? Price
{{ p.round_number }} {{p.bid}} {{ p.value }} {% if p.is_winner == True %} Yes {% else %} No {% endif %} {{ p.price }}

{% endif %} {% next_button %} {% include Constants.instructions_template %} {% endblock %}