{% extends "global/Page.html" %} {% load otree %} {% block title %} Results {% endblock %} {% block content %} {% if group.contract_accepted %}

{% if player.role == 'agent' %} You accepted the contract. {% else %} Participant B accepted your contract. {% endif %}

Fixed payment Return share Effort Level Effort Cost Total Return
{{ group.agent_fixed_pay }} {{ group.return_share_as_percentage }}% {{ group.agent_work_effort }} {{ group.agent_work_cost }} {{ group.total_return }}
{% else %}

{% if player.role == 'agent' %} You rejected the contract. {% else %} Participant B rejected your contract. {% endif %}

{% endif %}

Therefore your payoff is {{player.payoff}}.

{% next_button %}

{% include Constants.instructions_template %} {% endblock %}