{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results {% endblock %} {% block content %} {% if player.decision == True %} {% if group.total_customers > Constants.bar_full %}

In this event, number exceeded 6 participants so you will receive {{ player.payoff }} points.

{% else %}

In this event, number was below 6 participants so you will receive {{ player.payoff }} points.

{% endif %} {% else %}

You have decided to not join the event, which gives you {{ player.payoff}} points.

{% endif %}

The points distributed to the other participants are listed below.

{% for t in player.in_all_rounds %} {% endfor %} {% for p in player.get_others_in_group %} {% for t in p.in_all_rounds %} {% endfor %} {% endfor %}
Participants{{t.round_number}}Round
Player{{ p.id_in_group }}{{ t.payoff }}

Please press the next button and proceed

This graph shows the cumulative payoff of each participant.

{% next_button %} {% endblock %}