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

Your group's manager will now be chosen by a vote among all members of your group

The group member who receives the most votes will become the manager for the following group search task

If two or more group members are tied in votes, the manager will be chosen at random between tied group members

As a reminder, here were the following payoffs earned by the members of your group in the individual task, as well as the number of times searched by each player, along with their individual quiz score:

{% for p in others_in_group %} {% endfor %}
Employee ID Correct Answers in Stage I Task Payoff Times Searched
{{ player.id_in_group }} (You) {{ player.quizScore }} {{ player.current_payoff }} {{ player.numberOfClicks }}
{{ p.id_in_group }} {{ p.quizScore }} {{ p.current_payoff }} {{ p.numberOfClicks }}


{% formfield player.vote_choice label="Please select which employee you would like to vote for:" %}

{% next_button %} {% endblock %}