{% block title %} {% endblock %} {% block content %}

As a Worker, your compensation in each round is determined as follows:

{% if compensation_type == 'Fixed_wage' %}

Compensation = Wage Paid by the Restaurant


In each round, you will be paid a fixed wage of {{ fixed_high }} tokens by the restaurant. Please note that this fixed wage is higher than the standard wage at similar restaurants.

As a result, Customers will not pay you additional compensation for your service.

{% elif compensation_type == 'Service_charge' %}

Compensation = Wage Paid by the Restaurant + Service Charge


In each round, you will be paid a fixed wage of {{ fixed_low }} tokens by the restaurant. Please note that this fixed wage is the standard wage paid at similar restaurants.

In addition, the Customer pays you a service charge of {{service_charge}} tokens for your service, which you receive as additional compensation. This service charge is fixed, so Customers will pay you {{service_charge}} tokens in each round, regardless of the the quality of your service.

{% elif compensation_type == 'Pre_tip' %}

Compensation = Wage Paid by the Restaurant + Customer Tip


In each round, you will be paid a fixed wage of {{ fixed_low }} tokens by the restaurant. Please note that this fixed wage is the standard wage paid at similar restaurants.

In addition, the Customer pays you a tip for your service, which you receive as additional compensation. The Customer will decide how much to tip you in each round. Importantly, the Customer tips you before you provide the service.

{% elif compensation_type == 'Post_tip' %}

Compensation = Wage Paid by the Restaurant + Customer Tip


In each round, you will be paid a fixed wage of {{ fixed_low }} tokens by the restaurant. Please note that this fixed wage is the standard wage paid at similar restaurants.

In addition, the Customer pays you a tip for your service, which you receive as additional compensation. Customers will decide how much to tip you in each round. Importantly, the Customer tips you after you provide the service.

{% endif %}

Please click ‘Next’ to continue.

{{ next_button }}
{% endblock %}