{% extends "global/Page.html" %} {% load otree %} {% block title %} {% endblock %} {% block content %} {% for p in player_in_all_rounds %} {% for p in player.get_others_in_group %} {% endfor %}
Outcomes
{% if p.id_in_group == 1 %} You are Participant A {% else %}{% if p.id_in_group == 2 %}You are Participant B {% else %}{% if p.id_in_group == 3 %}You are Participant C {% else %} You are Participant D {% endif %}{% endif %}{% endif %} Your thrown number:{{ p.die_rolling }} Your voting right number:{{ p.vote_number }}
Other Players
{% if p.id_in_group == 1 %} Participant A {% else %}{% if p.id_in_group == 2 %}Participant B {% else %}{% if p.id_in_group == 3 %}Participant C {% else %} Participant D {% endif %}{% endif %}{% endif %} Thrown number:{{ p.die_rolling }} Voting right number:{{ p.vote_number }}
{% endfor %} {% next_button %} {% endblock %}