{{ extends 'global/Page.html' }} {{ block title }}Avatars{{ endblock }} {{ block content }} {{ 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 }}