{% extends "global/Page.html" %} {% load otree static %} {% block title %} Round Earnings {% endblock %} {% block content %} {% if player.round_number == 1 %} Your points for Block {{ player.current_block }} Round {{ player.block_round }} is: {{ player.payoff }}

{% endif %} {% if player.round_number < 5 and player.round_number > 1 %} Your points for Block {{ player.current_block }} Round {{ player.block_round }} is: {{ player.payoff }}

Explanation of points earned: {{ player.decision_points }} Points earned - {{ player.verify_cost }} Points cost for verification of message accuracy in the round


{% endif %} {% if player.round_number < 15 and player.round_number > 11 %} Your points for Block {{ player.current_block }} Round {{ player.block_round }} is: {{ player.payoff }}

Explanation of points earned: {{ player.decision_points }} Points earned - {{ player.verify_cost }} Points cost for verification of message accuracy in the round


{% endif %} {% if player.round_number == 11 %} Your points for Block {{ player.current_block }} Round {{ player.block_round }} is: {{ player.payoff }}

{% endif %} {% if player.round_number == 5 %} Your points earned for Block {{ player.current_block }} Round {{ player.block_round }} is: {{ player.payoff }}

Explanation of points earned: {{ player.decision_points }} Points earned - {{ player.verify_cost }} Points cost for verification of message accuracy in the round - {{ player.end_verify_cost }} Points cost for verification of overall message accuracy in the block - {{ player.replace_cost }} Points cost for partner replacement


{% endif %}








{% next_button %} {% endblock %}