{% extends "global/Page.html" %} {% load otree %} {% block title %} The election result {% endblock %} {% block content %}
| {% if p.id_in_group == 1 %} A(You) {% else %}{% if p.id_in_group == 2 %} B(You) {% else %}{% if p.id_in_group == 3 %} C(You) {% else %} D(You) {% endif %}{% endif %}{% endif %} | Number rolled:{{ p.die_rolling }} | Voting right number:{{ p.vote_number }} | {% if p.id_in_group == 1 %} Voting results: {{ total_vote_p1 }}votes {% else %}{% if p.id_in_group == 2 %}Voting results: {{ total_vote_p2 }}votes {% else %}{% if p.id_in_group == 3 %}Voting results: {{ total_vote_p3 }}votes {% else %} Voting results: {{ total_vote_p4 }}votes {% endif %}{% endif %}{% endif %} |
| {% if p.id_in_group == 1 %} A {% else %}{% if p.id_in_group == 2 %} B {% else %}{% if p.id_in_group == 3 %} C {% else %} D {% endif %}{% endif %}{% endif %} | Number rolled:{{ p.die_rolling }} | Voting right number:{{ p.vote_number }} | {% if p.id_in_group == 1 %} Voting results: {{ total_vote_p1 }}votes {% else %}{% if p.id_in_group == 2 %}Voting results: {{ total_vote_p2 }}votes {% else %}{% if p.id_in_group == 3 %}Voting results: {{ total_vote_p3 }}votes {% else %} Voting results: {{ total_vote_p4 }}votes {% endif %}{% endif %}{% endif %} |
Your group ID is {{ player.group_label }}, you {% if p.is_winner %} won {% else %} lost {% endif %} in this election task.
Your role is the {% if p.is_winner %} leader {% else %} group member {% endif %} in the following experiment.
{% endfor %}If you have read and confirmed your role information, please click on the "next" button to enter the stage three of the experiment.
{% endblock %}