{% extends "global/PageExt.html" %}
{% load otree_tags staticfiles %}
{% block title %}
Round {{ view.round_number }} of {{ Constants.num_rounds }}: Results.
{% endblock %}
{% block inner_content %}
Stage 1:
| Endowment: |
|
{{ Constants.endowment }} |
| You sent to your partner: |
- |
{{ player.pd_decision }} |
| You have left out of your endowment in Stage 1: |
|
{{ player.endowment_remain }} |
| Your partner from group {{ player.another_subgroup_name }} sent to you:
|
{{ player.my_pair.pd_decision }} |
| This amount has been multiplied by {{ Constants.pd_factor }} |
| So you received from your partner in group {{ player.another_subgroup_name }}: |
+ |
{{ player.pd_received_mult }} |
| Stage 1 payoff : |
{{ player.pd_payoff }} |
Stage 2:
{% if session.config.outgroup %}
| Stage 2: |
| Endowment: |
|
{{ player.punishment_endowment }} |
| Deduction tokens you sent: |
- |
{{ player.punishment_sent }} |
| You have left out of your endowment in Stage 2: |
|
{{ player.punishment_endowment_remain }} |
| Your payoff was decreased by the members of another group by:
|
- |
{{ player.pun_r_out_mult }} |
{% if session.config.ingroup %}
| Your payoff was decreased by the members of your group by:
|
- |
{{ player.pun_r_in_mult }} |
{% endif %}
| Your payoff in Stage 2: |
= |
{{ player.payoff_stage2 }} |
{% endif %}
Payoffs
| Total payoff in this round: |
{{ player.payoff }} |
| In US Dollars: |
{{ real_currency_payoff }} |
| Your bonus in all rounds so far: |
{{ participant_real_currency_payoff }} |
{% next_button %}
{% endblock %}
{% block styles %}
{% endblock %}