{% block title %} {# Add title here if needed #} {% endblock %} {% block content %}
  1. {% if comp == 'fixed_wage' %}


    Payoff = 50 + Satisfaction from the Worker’s Service

    {% elif comp == 'service_charge' %}


    Payoff = 50 + Satisfaction from the Worker’s Service – Service Charge Paid to the Worker

    {% elif comp == 'pre_tip' or comp == 'post_tip' %}


    Payoff = 50 + Satisfaction from the Worker’s Service – Tip Paid to the Worker

    {% endif %}
  2. Your payoff in Round {{ round_number }} is as follows:

    {% if comp == 'fixed_wage' %}


    • Your base payoff: {{ base_payoff }} tokens

    • Your satisfaction from Worker’s service: {{ satisfaction_display }} tokens
    {% elif comp == 'service_charge' %}


    • Your base payoff: {{ base_payoff }} tokens

    • Your satisfaction from Worker’s service: {{ satisfaction_display }} tokens

    • Service charge paid to the worker: {{ service_charge_display }} tokens
    {% elif comp == 'pre_tip' or comp == 'post_tip' %}


    • Your base payoff: {{ base_payoff }} tokens

    • Your satisfaction from Worker’s service: {{ satisfaction_display }} tokens

    • Tip paid to the worker: {{ tip_display }} tokens
    {% else %}
    Payoff details are not available.
    {% endif %}


    Your total payoff in Round {{ round_number }} is: {{ total }} tokens.

{{ next_button }}
{% endblock %}