{% block title %} {# Add title here if needed #} {% endblock %} {% block content %}
  1. Your Task

    {% if compensation_type != "Pre_tip" %}

    On the next page, you are going to begin Round {{ subsession.round_number }} of the decode task.

    {% endif %}

    Recall that the number of correctly completed decodes represents the effort you put into serving the Customer and the quality of your service. The more decodes you complete, the higher the quality of your service, which in turn leads to higher Customer satisfaction.

  2. Compensation

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


    {% if compensation_type == "Fixed_wage" or compensation_type == "fixed_wage" %}

    Compensation = Wage Paid by the Restaurant


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

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



    You will now begin Round {{ subsession.round_number }} of the decode task on the next page.

  3. {% elif compensation_type == "Service_charge" or compensation_type == "service_charge" %}

    Compensation = Wage Paid by the Restaurant + Service Charge


    In each round, you will be paid a fixed wage of {{ wage }} 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 40 tokens for your service, which you receive as additional compensation. This service charge is fixed, so the Customer will pay you 40 tokens in each round, regardless of the quality of your service.


    You will now begin Round {{ subsession.round_number }} of the decode task on the next page.

    {% elif compensation_type == "Pre_tip" or compensation_type == "pre_tip" %}

    Compensation = Wage Paid by the Restaurant + Customer Tip


    In each round, you will be paid a fixed wage of {{ wage }} 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 complete the decode task.



    On the next page, you will see the amount the Customer has chosen to tip you.

    {% elif compensation_type == "Post_tip" or compensation_type == "post_tip" %}

    Compensation = Wage Paid by the Restaurant + Customer Tip


    In each round, you will be paid a fixed wage of {{ wage }} 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 after you complete the decode task.



    You will now begin Round {{ subsession.round_number }} of the decode task on the next page.

    {% endif %}

Please click ‘Next’ to continue.

{{ next_button }}
{% endblock %}