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

You are Member {{ player.id_in_group }}.

The proposer in this Round was Member {{ group.proposer }}.

These were the votes in this Round:

Member 1 Member 2 Member 3 Member 4 Member 5
{{ vote1 }} {{ vote2 }} {{ vote3 }} {{ vote4 }} {{ vote5 }}

{% if agreement == "Yes" and Constants.veto == True %}

Since the proposal received the support of at least {{ Constants.q }} members, including the veto player, it is approved.

The Match is over and this is is the outcome in this Match:

Member 1 Member 2 Member 3 Member 4 Member 5
{{ group.allocation_to_1 }} {{ group.allocation_to_2 }} {{ group.allocation_to_3 }} {{ group.allocation_to_4 }} {{ group.allocation_to_5 }}
{% elif agreement == "No" and Constants.veto == True %}

Since the proposal did not receive the support of at least {{ Constants.q }} members, including the veto player, it is rejected.

Thus, we continue to another round of bargaining in the same Match.

{% elif agreement == "No" and Constants.veto == False %}

Since the proposal did not receive the support of at least {{ Constants.q }} members, it is rejected.

Thus, we continue to another round of bargaining in the same Match.

{% elif agreement == "Yes" and Constants.veto == False %}

Since the proposal received the support of at least {{ Constants.q }} members, it is approved.

The Match is over and this is is the outcome in this Match:

Member 1 Member 2 Member 3 Member 4 Member 5
{{ group.allocation_to_1 }} {{ group.allocation_to_2 }} {{ group.allocation_to_3 }} {{ group.allocation_to_4 }} {{ group.allocation_to_5 }}
{% endif %}


{% next_button %} {% endblock %} {% block styles %} {% endblock %}