{% extends "global/Page.html" %} {% load otree %} {% block title %}Final Payout Summary{% endblock %} {% block content %} {% if player.role_choice == 3 %}
Role: Third Row
Base participation pay: $5.00
Correct answers in slider task: {{ player.num_correct }}
Slider task earnings: {{ player.field_maybe_none('slider_earnings') }}
Amount received from sender (tripled): {{ player.field_maybe_none('amount_received') }}
Amount you returned: {{ player.field_maybe_none('responder_decision') }}
Amount you kept: {{ player.field_maybe_none('amount_kept') }}
{% elif player.role_choice == 2 %}Role: Second Row
Base participation pay: $10.00
Initial endowment: {{ Constants.endowment }}
Amount sent to responder: {{ player.field_maybe_none('sender_decision') }}
Amount returned by responder: {{ player.field_maybe_none('responder_decision') }}
Amount you kept: {{ player.field_maybe_none('amount_kept') }}
{% elif player.role_choice == 1 %}Role: First Row
Base participation pay: $10.00
Chosen pairing for payment: 1 of your 4 predictions was randomly selected for payment.
Your prediction for that pairing: {{ player.field_maybe_none('predicted_return') }}
Actual amount returned: {{ player.field_maybe_none('actual_return') }}
Prediction error: {{ player.field_maybe_none('prediction_error') }}
Prediction accuracy bonus: {{ player.field_maybe_none('prediction_bonus') }}
{% endif %}Please take your computer number and make your way to the back of the room. Thank you for participating!
{% endblock %}