{% extends "global/Page.html" %} {% load staticfiles otree_tags %} {% block title %} Results {% endblock %} {% block content %}
{% if group.actual_accept_1 %}
The {{ Constants.p1 }} offered a wholesale price of {{ group.offer1 }} to {{ Constants.p2 }}.
The {{ Constants.p2 }} accepted the offer.
{% elif group.actual_accept_2 %}
The {{ Constants.p1 }} offered a wholesale price of {{ group.offer1 }} to {{ Constants.p2 }}.
The {{ Constants.p2 }} rejected the offer.
Then, the {{ Constants.p1 }} offered a wholesale price of {{ group.offer2 }} to {{ Constants.p3 }}.
The {{ Constants.p3 }} accepted the offer.
{% else %}
The {{ Constants.p1 }} offered a wholesale price of {{ group.offer1 }} to {{ Constants.p2 }}.
The {{ Constants.p2 }} rejected the offer.
Then, the {{ Constants.p1 }} offered a wholesale price of {{ group.offer2 }} to {{ Constants.p3 }}.
The {{ Constants.p3 }} rejected the offer.
{% endif %}
Your revenue in the game is: {{ player.points }}.
Your real payoff is: {{ total_payoff }}.
{% next_button %}
{% endblock %}