{% extends "global/Base.html" %} {% load staticfiles otree_tags %} {% 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|floatformat }}

In addition to your initial 30 points, your payoff is {{player.payoff}}.

{% else %} {% if player.role == 'agent' %} You rejected the contract. Thus you received 10 points. Your payoff equals your initial 30 points plus 10, that 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 %}