{% extends "global/Page.html" %} {% load otree %} {% block title %} Result in Period 2 {% endblock %} {% block content %}
Your value in this period is {{ player.value_2}};
Your bid in this period is {{ player.bid_2}};
The secret price is {{ player.reserve_2}};
The membership fee is {{ player.upfront_2}}.
You are not the lucky buyer. You have to pay the membership whatever you get the item or not.
Your bid = {{ player.bid_2}} >= secret price={{ player.reserve_p_2}}.
You can get the item.
Your profit in this period = - membership fee + value of the item - secret price = -{{ player.upfront_2}} + {{ player.value_2}} - {{ player.reserve_2}} ={{ player.profit_2}};
After period 1, you account has {{ player.account_1}}.
Now your account has {{ player.account_2}}.
{% next_button %}
{% include Constants.instructions_template %} {% endblock %}