{% extends "global/Page.html" %} {% load otree %} {% block title %} Laboratory part payment {% endblock %} {% block content %}

Total Payment: {{ final_payment_czk|to0 }} CZK

Pre-Game Guessing (Round 1)

Guessing task 1:

Randomly chosen contribution level: {{ norm_pre_level }}
Average personal norm at this level: {{ avg_pre_personal }}
Your guess: {{ my_nn_pre }}

{% if bonus_norm_pre > 0 %}
Success! (+50 CZK)
{% else %}
Missed (0 CZK)
{% endif %}
Guessing task 2

Actual average contribution (session): {{ avg_contribution_session }}
Your guess: {{ my_emp_pre }}

{% if bonus_emp_pre > 0 %}
Success! (+50 CZK)
{% else %}
Missed (0 CZK)
{% endif %}

Post-Game Guessing (End of Game)

Guessing task 1

Randomly chosen contribution level: {{ norm_post_level }}
Average personal norm at this level: {{ avg_post_personal }}
Your guess: {{ my_nn_post }}

{% if bonus_norm_post > 0 %}
Success! (+50 CZK)
{% else %}
Missed (0 CZK)
{% endif %}
Guessing task 2

Actual average contribution (session): {{ avg_contribution_session }}
Your guess: {{ my_emp_post }}

{% if bonus_emp_post > 0 %}
Success! (+50 CZK)
{% else %}
Missed (0 CZK)
{% endif %}

Final Payment Breakdown

Repeated Game
  • Selected Rounds:
      {% for item in round_payment_details %}
    • Round {{ item.round }}: {{ item.payoff }} points
    • {% endfor %}
  • Total Points: {{ pgg_payoff_sum }} points
  • (Total Points x 3 CZK conversion)
  • Total: {{ pgg_czk_total }} CZK
Norms Bonuses
  • Pre-Game Bonus: {{bonus_norm_pre }} + {{bonus_emp_pre}}
  • Post-Game Bonus: {{bonus_norm_post }} + {{bonus_emp_post}}
  • Norms Total: {{ norms_total_bonus }} CZK

Lab part payment: {{ final_payment_czk }} CZK

{{ next_button }} {% endblock %}