{% extends "global/Page.html" %} {% load otree %} {% block title %} {% endblock %} {% block content %}

CUMULATIVE COMPENSATION {{ round_display }}


As a Worker, you have earned a total of {{ cumulative_comp }} tokens in {{ round_number }} round(s).


Compensation Details by Round:

{% if comp == 'fixed_wage' %} {% for r in rows %} {% endfor %}
Round Wage Paid by the Restaurant Total Compensation
{{ r.round_index }} {{ r.wage }} tokens {{ r.total }} tokens
{% elif comp == 'service_charge' %} {% for r in rows %} {% endfor %}
Round Wage Paid by the Restaurant Service Charge Paid by the Customer Total Compensation
{{ r.round_index }} {{ r.wage }} tokens {{ r.service_charge }} tokens {{ r.total }} tokens
{% elif comp == 'pre_tip' or comp == 'post_tip' %} {% for r in rows %} {% endfor %}
Round Wage Paid by the Restaurant Tip Paid by the Customer Total Compensation
{{ r.round_index }} {{ r.wage }} tokens {{ r.tip_display }} tokens {{ r.total }} tokens
{% else %}
Compensation details are not available.
{% endif %}



Please click ‘Next’ to continue.

{{ next_button }}
{% endblock %}