{{ 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 a 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 from the bargaining portion of the experiment would be {{buyer_payoff}} EXD and your counterpart's payoff from the bargaining portion of the experiment would be {{seller_payoff}} EXD.

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

If you accept the offer a 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 from the bargaining portion of the experiment would be {{seller_payoff}} EXD and your counterpart's payoff from the bargaining portion of the experiment would be {{buyer_payoff}} EXD.

{{ endif }}

If you reject the offer, the game could end and in which case you and your counterpart would recieve no payoff from the bargaining portion of the experiment.

If the game continues, you may make a counteroffer.

{{formfields}}

Your avatar:

{{ if player.is_man}} {{ if player.does_reveal}} {{ endif }} {{ endif }} {{ if player.is_man}} {{ if player.doesnt_reveal}} {{ endif }} {{ endif }} {{ if player.is_woman}} {{ if player.does_reveal}} {{ endif }} {{ endif }} {{ if player.is_woman}} {{ if player.doesnt_reveal}} {{ endif }} {{ 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}} {{ if other_player.does_reveal}} {{ endif }} {{ endif }} {% endfor %} {% for other_player in player.get_others_in_group() %} {{ if other_player.is_man}} {{ if other_player.doesnt_reveal}} {{ endif }} {{ endif }} {% endfor %} {% for other_player in player.get_others_in_group() %} {{ if other_player.is_woman}} {{ if other_player.does_reveal}} {{ endif }} {{ endif }} {% endfor %} {% for other_player in player.get_others_in_group() %} {{ if other_player.is_woman}} {{ if other_player.doesnt_reveal}} {{ endif }} {{ endif }} {% endfor %} {% for other_player in player.get_others_in_group() %} {% if other_player.is_seller%} {% else %} {% endif %} {% endfor %} {{ next_button }} {{ endblock }}