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

This concludes the experiment.

{% if is_accountant %} {% if num_paying_rounds_allocation > 1 %}

The following rounds were chosen to be paid for the declarations of solvency and liquidity: {{ paying_rounds_allocation }}

Your total earnings for declarations for those rounds was: {{ earnings_allocation }}

{% else %}

The following round was chosen to be paid for the declarations of solvency and liquidity: {{ paying_rounds_allocation }}

Your earnings for declarations for that round were: {{ earnings_allocation }}

{% endif %} {% else %} {% if num_paying_rounds_allocation > 1 %}

The following rounds were chosen to be paid for the allocation decision: {{ paying_rounds_allocation }}

Your total earnings for allocation decisions for those rounds was: {{ earnings_allocation }}

{% else %}

The following round was chosen to be paid for the allocation decision: {{ paying_rounds_allocation }}

Your earnings for allocation decisions for that round were: {{ earnings_allocation }}

{% endif %} {% endif %} {% if num_paying_rounds_prediction > 1 %}

The following rounds were chosen to be paid for accurate prediction: {{ paying_rounds_prediction }}

Your total earnings for predictions for those rounds was: {{ earnings_prediction }}

{% else %}

The following round was chosen to be paid for accurate prediction: {{ paying_rounds_prediction }}

Your earnings for predictions for that round were: {{ earnings_prediction }}

{% endif %}

This brings your earnings from both allocation and prediction to {{ total_earnings }}.

In addition, you will receive the {{ show_up_fee }} show-up payment.

This brings your total payment to {{ total_payoff }}.

History of all rounds

{% for p in player_in_all_rounds %} {% endfor %}
RoundAssetsCashLiquid?Solvent?Predicted priceActual priceAllocation payoffPrediction payoff
{{ p.round_number }} {{ p.asset }} {{ p.cash }} {{ p.liquid }} {{ p.solvent }} {{ p.price_guess }} {{ p.group.price }} {{ p.allocation_payoff }} {{ p.prediction_payoff }}
{% endblock %}