{{ block title }} Results {{ endblock }} {{ block content }}
Your Results
{% if player.is_employer == True %} {% if player.num_workers == 0 %}

You did not employ any workers this round.
You received a payoff of {{ player.payoff }}. Your total profit in all rounds is {{ total_payoff }}.

{% else %}

You employed {{ player.num_workers }} worker(s) this round. You paid a wage {{ player.total_wage_paid }} and received {{ player.total_effort_received }} effort units.
Your profit this round is {{ player.payoff }}. Your total profit in all rounds is {{ total_payoff }}.

{% endif %} {% else %} {% if player.is_employed == True %}

You were employed this round. You received a wage of {{ player.wage_received }} and provided {{ player.effort_choice }} effort units.
Your profit this round is {{ player.payoff }}. Your total profit in all rounds is {{ total_payoff }}.

{% else %}

You were not employed this round.
You received a payoff of {{ player.payoff }}. Your total profit in all rounds is {{ total_payoff }}.

{% endif %} {% endif %}
{{ endblock }}