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

As a member of the {{player.group_type}} group, you chose{% if player.choice == 'Do Not Participate'%} not to participate.{% endif %} {% if player.choice == 'Participate'%} to participate.{% endif %}{% if subsession.winner == 'Tie'%} Both groups had {{subsession.beta_participants}} participant(s), and thus tied.{% else %} The Alpha group had {{subsession.alpha_participants}} participant(s), and the Beta group had {{subsession.beta_participants}} participant(s). Thus, the {{subsession.winner}} group, which had more participants, won.{% endif %} As a result, you will recieve a personal bonus of {% if player.choice == 'Do Not Participate'%}{{player.personal_bonus}}{% else %}0{% endif %}, a group payoff of {{group.bonus}}, and and a total personal payoff of {{player.payoff}}.

{% next_button %} {% endblock %}