{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results of round {{ round }} {% endblock %} {% block app_styles %} {% endblock %} {% block content %} {% if bid_guess == 0 %} {% if bid == 0 %} You predicted that the bank would neither bid nor offer any assets. The bank actually chose to neither bid nor offer assets.

{% else %} You predicted that the bank would neither bid nor offer any assets. The bank actually chose to {{ decision }} assets,{% if decision == 'buy' %} bidding {{ bid }} units of cash{% else %} offering {{ bid }} units of assets{% endif %}.

{% endif %} {% else %} {% if bid == 0 %} You predicted that the bank would {{ decision_guess }} assets, {% if decision_guess == 'buy' %} bidding {{ bid_guess }} units of cash{% else %} offering {{ bid_guess }} units of assets{% endif %}. The bank actually chose to neither bid nor offer assets.

{% else %} You predicted that the bank would {{ decision_guess }} assets, {% if decision_guess == 'buy' %} bidding {{ bid_guess }} units of cash{% else %} offering {{ bid_guess }} units of assets{% endif %}. The bank actually chose to {{ decision }} assets,{% if decision == 'buy' %} bidding {{ bid }} units of cash{% else %} offering {{ bid }} units of assets{% endif %}.

{% endif %} {% endif %}

At the end of this round, the bank you are responsible for had {{ assets }} in assets and {{cash|to1}} in cash. It had {{ impatient }} impatient customers.

This brings your payoff for declarations this round to {{ payoff }}.

{% next_button %}

Results including this round
{% for p in player_in_all_rounds %} {% endfor %}
RoundDeclared Solvent?Declared Liquid?Solvent Correct?Liquid Correct?Cash (Begin 2nd period)Predicted offerActual offerDeclaration payoffPrediction payoff
{{ p.round_number }} {{ p.solvent }} {{ p.liquid }} {{ p.solvent_correct }} {{ p.liquid_correct }} {{p.cash_aux|to1}} {{ p.bid_guess }} {{ p.bid }} {{ p.allocation_payoff }} {{ p.prediction_payoff }}
{% endblock %}