{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
| Results |
Part{% if subsession.round_number < first_round_part3 %} 2 {% else %} 3 {% endif %}- Round {{ displayed_round_number }} |
{% endblock %}
{% block content %}
{% if player.role == 'Person A' %}
You decided{% if group.buy_decision == 0 %} not{% endif %} to buy the product{% if subsession.round_number >= first_round_part3 and group.buy_decision == 1 %}
and to spend {{ group.compensation_decision | c }} to reduce the number of sliders for {% if player.treatment == 'Harm' %}each {% endif %}Person B{% endif %}.
| Your payoff in this round is: | {{ player.current_payoff }} |
| The price of the product in this round was: | {{ player.price }} |
| Your endowment was: | {{ Constants.endowment }} |
| The value of the good was: | {{ Constants.value }} |
{% if subsession.round_number >= first_round_part3 %}
| Each point you spent reduces the number of sliders for Person B by: |
{% if player.treatment == 'Harm' %}
{{ sliders_per_point_harm }} sliders
{% else %}
{{ Constants.SlidersPerPoint }} sliders
{% endif %} |
{% endif %}
{% elif player.role == 'Person B' or player.role == 'Person B2' %}
{% if player.treatment == 'Responsibility' %}
{% if group.buy_decision == 0 and group.buy_decision_buyer2 == 0 %}
The product was not bought in this round.
{% else %}
At least one of the Person As you were matched with in this round decided to buy the product.
{% endif %}
{% else %}
The Person A you were matched with in this round decided
{% if group.buy_decision == 0 %} not {% endif %} to buy the product.
{% endif %}
{% if subsession.round_number >= first_round_part3 %}
{% if player.treatment == 'Responsibility' %}
{% if group.buy_decision == 1 or group.buy_decision_buyer2 == 1 %}
In total {{ total_compensation | c }} were spent to reduce the number of sliders you have to solve.
{% endif %}
{% elif group.buy_decision == 1 %}
Person A spent {{ group.compensation_decision | c }} to reduce the number of sliders for you.
{% endif %}
{% endif %}
| Your payoff in this round is: | {{ player.current_payoff }} |
| If this round is selected for implementation, you will have to solve: | {{ player.num_sliders_ex_post }} sliders |
| The price of the product in this round was: | {{ player.price }} |
| Your endowment was: | {{ Constants.endowment }} |
| The value of the good was: | {{ Constants.value }} |
{% if subsession.round_number >= first_round_part3 %}
| Each point {% if player.treatment == 'Responsibility' %} a {% endif %}Person A spent reduces the number of sliders for you by: |
{% if player.treatment == 'Harm' %}
{{ sliders_per_point_harm }} sliders
{% else %}
{{ Constants.SlidersPerPoint }} sliders
{% endif %} |
{% endif %}
{% elif player.role == 'Person A2' %}
You decided{% if group.buy_decision_buyer2 == 0 %} not{% endif %} to buy the product{% if subsession.round_number >= first_round_part3 and group.buy_decision_buyer2 == 1 %}
and to spend {{ group.compensation_decision_buyer2 | c }} to reduce the number of sliders for Person B{% endif %}.
| Your payoff in this round is: | {{ player.current_payoff }} |
| The price of the product in this round was: | {{ player.price }} |
| Your endowment was: | {{ Constants.endowment }} |
| The value of the good was: | {{ Constants.value }} |
{% if subsession.round_number >= first_round_part3 %}
| Each point you spent reduces the number of sliders for Person B by: |
{% if player.treatment == 'Harm' %}
{{ sliders_per_point_harm }} sliders
{% else %}
{{ Constants.SlidersPerPoint }} sliders
{% endif %} |
{% endif %}
{% endif %}
{% next_button %}
{% endblock %}