{{ extends 'global/Page.html' }} {{ block title }}First Offer{{ endblock }} {{ block content }} {{ if player.is_buyer}} Please make an offer of how much you (the buyer) would like to pay the seller for the token. {{ endif }} {{ if player.is_seller}} Please make an offer of how much you (the seller) would like to sell the token to the buyer for. {{ endif }}

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 %} {{ formfields }} {{ next_button }} {{ endblock }}