{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results of round {{ round }} {% endblock %} {% block app_styles %} {% endblock %} {% block content %}

At the end of this round, you had {{ assets }} units in assets and {{cash|to1}} units in cash.

You had {{ impatient }} impatient customers.

{% if has_accountant %}

Based on their forecast, the accountant for your bank declared that your bank was:

{% if solvent %} SOLVENT {% else %} NOT SOLVENT {% endif %}

And the computer determined that your bank was:

{% if liquid %} LIQUID {% else %} NOT LIQUID {% endif %}
{% else %}

Based on this information, the computerized accounting review determines that your bank was:

{% if solvent %} SOLVENT {% else %} NOT SOLVENT {% endif %} and {% if liquid %} LIQUID {% else %} NOT LIQUID {% endif %}

{% endif %}

Your payoffs were {{ allocation_payoff }} for asset allocation and {{ prediction_payoff }} for prediction.

{% next_button %}
Results including this round
{% for p in player_in_all_rounds %} {% endfor %}
RoundAssetsCash# Impatient costumersLiquid?Solvent?Predicted priceActual priceAllocation payoffPrediction payoff
{{ p.round_number }} {{ p.asset }} {{ p.cash_aux|to1 }} {{p.impatient}} {{ p.liquid }} {{ p.solvent }} {% if p.no_trade == 1 %} No trade {% else %} {{ p.price_guess }} {% endif %} {% if p.group.subsession.price == 0 %} No trade {% else %} {{ p.group.subsession.price_display|to2 }} {% endif %} {{ p.allocation_payoff }} {{ p.prediction_payoff }}

{% endblock %}