{% block title %} {# Add title here if needed #} {% endblock %} {% block content %}
  1. {% with ctype=session.config.compensation_type %} {% if ctype == 'Fixed_wage' %}


    Compensation = Wage Paid by the Restaurant

    {% elif ctype == 'Service_charge' %}


    Compensation = Wage Paid by the Restaurant + Service Charge

    {% elif ctype == 'Pre_tip' or ctype == 'Post_tip' %}


    Compensation = Wage Paid by the Restaurant + Customer Tip

    {% endif %}

  2. In Round {{ round_number }}, you have completed the following number of decodes: {{ effort }} decodes


    Your compensation in Round {{ round_number }} is as follows:

    {% if ctype == 'Fixed_wage' %}


    • Wage paid by the Restaurant: {{ C.FixedWage }} tokens
    {% elif ctype == 'Service_charge' %}


    • Wage paid by the Restaurant: {{ C.WageStandard }} tokens

    • Service charge paid by the Customer: {{ C.ServiceCharge }} tokens
    {% elif ctype == 'Pre_tip' or ctype == 'Post_tip' %}


    • Wage paid by the Restaurant: {{ C.WageStandard }} tokens

    • Tip paid by the Customer: {{ tip_display }} tokens
    {% else %}
    Compensation details are not available yet.
    {% endif %}


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

{% endwith %}

Please click ‘Next’ to continue.

{{ next_button }}
{% endblock %}