{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
Final Results of the Experiment
{% endblock %}
{% block content %}
The total number of Points you earned in Part 1 of the Experiment is {{ player.totalpayoffP1 }}.
{{ text }}
In Part 2 of the experiment, you have earned the following additional payoffs:
On page 2, you have answered {{ player.CRcorrect }} questions correctly, you earned {{ player.totalCRpayoff }} Points in total.
On page 3, you invested {{ player.riskaversion1 }} in the risky investment. {% if player.invest == 0 %} The investment return was 0. Your payoff from this question is {{ player.payoff3 }} Points. {% endif %}
{% if player.invest == 1 %} The investment return was 2.5 times the amount invested. Your payoff from Part 2E is {{ player.payoff3 }} Points. {% endif %}
On page 5, you kept the following amount of Points that will be added to your payoffs: {{ player.socpref }} Points.
Therefore, your total payoff from the Experiment is {{ player.finalpayoff }} Points.
This is converted to GBP using the exchange rate {{ Constants.EXCHANGE }} Points = 1 GBP, which gives {{ player.money1 }} GBP. In addition, you receive {{ Constants.SHOWUP }} GBP as show-up fee.
Your total payoff is {{ player.money2 }} GBP.
{{ Constants.SHOWUP }} GBP will be paid to you immediately, the rest as a Bonus payment.
Please, click on the following Link to finish this experiment and get back to the Prolific webpage:
Link
{% endblock %}