{{ extends 'global/Page.html' }} {{ block title }}Accept or Reject First Offer{{ endblock }} {{ block content }}

Your counterpart's offer was randomly selected to be used in the first round. They offered {% for p in group.get_players %} {% if p.first_mover == True %} {{ p.offer}} EXD {% endif %} {% endfor %}. You now have the opportunity to accept or reject it.

{{ if player.is_buyer}}

If you accept the offer transaction will take place and you will pay {% for p in group.get_players %} {% if p.first_mover == True %} {{ p.offer}} EXD {% endif %} {% endfor %} for the token. Your payoff would be {{buyer_payoff}} EXD and your counterpart's payoff would be {{seller_payoff}} EXD.

{{ endif }} {{ if player.is_seller}}

If you accept the offer transaction will take place and you will sell the token for {% for p in group.get_players %} {% if p.first_mover == True %} {{ p.offer}} EXD {% endif %} {% endfor %}. Your payoff would be {{seller_payoff}} EXD and your counterpart's payoff would be {{buyer_payoff}} EXD.

{{ endif }}

If you accept the offer, the game will end and the offer will be used for payment. If the game ends you and your counterpart make {{C.PARTICIPATION_COMPENSATION}} CAD. If the game continues, you may make a counteroffer.

{{formfields}}

Your avatar:

{{ if player.is_man}} {{ else}} {{ endif }} {{ if player.is_buyer}} {{ else}} {{ endif }}

Your counterpart's avatar

{% for other_player in player.get_others_in_group() %} {% if other_player.is_man%} {% else %} {% endif %} {% endfor %} {% for other_player in player.get_others_in_group() %} {% if other_player.is_seller%} {% else %} {% endif %} {% endfor %} {{ next_button }} {{ endblock }}