{% extends "global/Page.html" %} {% load otree %} {% block title %} Stage One——Election {% endblock %} {% block content %}

You are allowed to divide votes to multiple members in the group, including yourself.

Please enter the number of votes you have decided to vote for each member, which can be from 0 to the number of votes you have obtained.

The total number of votes cast for four members is the number of votes you have obtained.

The one who receive the most votes will be elected to be the leader. In case of a tie, the computer will randomly decide which of the tied members to be the leader.

Your group ID is {{ player.group_label }}, the number of voting right you receive is {{ player.vote_number }}.

How much will you vote to A {% if player.id_in_group == 1 %}(You){% else %} {% endif %}?(If not, enter 0) {% formfield player.vote_p1 label=""%} How much will you vote to B {% if player.id_in_group == 2 %}(You){% else %} {% endif %}?(If not, enter 0) {% formfield player.vote_p2 label=""%} How much will you vote to C{% if player.id_in_group == 3 %}(You){% else %} {% endif %}?(If not, enter 0) {% formfield player.vote_p3 label=""%} How much will you vote to D{% if player.id_in_group == 4 %}(You){% else %} {% endif %}?(If not, enter 0) {% formfield player.vote_p4 label=""%}

If you have voted, please click the "submit" button

After everyone submits, we will enter the second stage of the experiment, and the voting results will be displayed after the completion of the second stage.

{% endblock %}