{% extends "global/Page.html" %} {% load otree static %} {% block title %} Switch Voting {% endblock %} {% block content %}

Your group 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 players
  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 %} {% endfor %}
Player ID Average Contribution Vote them in?
{{player.participant_id}} {{player.get_average_contribution}} Yes | No
{% else %}

There is nothing to vote on this round.

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