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

CUMULATIVE PAYOFF {{ round_display }}


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


Payoff Details by Round:

{% if comp == 'fixed_wage' %} {% for r in rows %} {% endfor %}
Round Base Payoff Satisfaction from the Worker’s Service Total Payoff
{{ r.round_index }} {{ r.base }} tokens {{ r.satisfaction }} tokens {{ r.total }} tokens
{% elif comp == 'service_charge' %} {% for r in rows %} {% endfor %}
Round Base Payoff Satisfaction from the Worker’s Service Service Charge Paid to the Worker Total Payoff
{{ r.round_index }} {{ r.base }} tokens {{ r.satisfaction }} tokens {{ r.service_charge }} tokens {{ r.total }} tokens
{% elif comp == 'pre_tip' or comp == 'post_tip' %} {% for r in rows %} {% endfor %}
Round Base Payoff Satisfaction from the Worker’s Service Tip Paid to the Worker Total Payoff
{{ r.round_index }} {{ r.base }} tokens {{ r.satisfaction }} tokens {{ r.tip }} tokens {{ r.total }} tokens
{% else %}
Payoff details are not available.
{% endif %}



Please click ‘Next’ to continue.

{{ next_button }}
{% endblock %}