{% extends "global/Page.html" %} {% load staticfiles 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 You Received
{{ group.agent_fixed_pay }} {{ group.return_share_as_percentage }}% {{ group.agent_work_effort }} {{ effort_cost }} {{ group.total_return }} {{ received }}

In addition to your initial {{ Constants.base_pay }}, your payoff is {{player.payoff}}.

{% else %}

{% if player.role == 'agent' %} You rejected the contract. Thus you received {{ Constants.reject_agent_pay }}. Adding your initial {{ Constants.base_pay }}, your payoff is {{player.payoff}}. {% else %} Participant B rejected your contract. Thus you have received nothing. Your payoff equals initial {{player.payoff}}. {% endif %}

{% endif %}

{% next_button %}

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