<<<<<<< HEAD ======= >>>>>>> hotfix {% extends "global/Page.html" %} {% load otree static %} {% block title %} Switch Voting {% endblock %} {% block content %} {% if player.team == 1 %}

Team A

{% else %}

Team B

{% endif %}

Your team must vote on if another player can join your team.

Note:
  1. The max team size is {{ Constants.max_players_in_team }}
  2. This screen will not show if you have the max number of members
  3. If your team attempts to vote more people in than free spots available:
    • The people with the most votes for will be chosen first
    • The remaining spots will be given randomly to those who were voted in

{% if group.get_other_sdp_size > 0 %}
Request(s) to join:
{% for player in group.get_other_sdp %} <<<<<<< HEAD ======= >>>>>>> hotfix {% endfor %}
Player ID Average Contribution Average Percent Contributed Vote them in?
{{player.get_label}} {{player.get_average_contribution}}{{player.get_average_contribution_pct|floatformat:2}}%{{player.get_average_contribution_pct|to2}}%Yes | No
{% else %}

There is nothing to vote on this round.

{% endif %}
{% if session.config.treatment == 1 or session.config.treatment == 3 %} {% if group.get_other_sdp_size > 0 %}

You may use the chat box below to discuss the voting decision.

{% chat nickname=participant.label channel=player.votingchannel %} {% else %}

Please continue to the next page.

{% endif %} {% else %}

Please continue to the next page.

{% endif %} {% next_button %} {% endblock %}