{% extends "global/Page.html" %}
{% load otree static %}
{% block content %}
{% include "global/fopen_bt.html" %}
Information on Part 4
{% include "global/fopen_at.html" %}
The payment level was randomly selected to be {{ player.pwd_piecerate }}.
That means for each correctly solved math task, you obtain {{ player.math_piecerate }}
and for each code entered correctly, you obtain {{ player.pwd_piecerate }}.
{% if player.treatment == 'Control' %}
The computer randomly selected for you to not receive the recommendation regardless of your previous decisions.
{% elif player.treatment == 'Reminder' %}
The computer randomly selected for you to receive the recommendation regardless of your previous decisions. You will not have to pay for the recommendation.
{% elif player.treatment == 'WTP' %}
{% if player.WTP_pos == True %}
The computer has randomly selected a cost of {{ rand_cost }} points for the recommendation.
{% elif player.WTP_pos == False %}
The computer has randomly selected a cost of {{ rand_cost }} points to not receive the recommendation.
{% endif %}
Based on your answers for this cost you choose to
{% if player.rel_decision == 1 %} receive the recommendation. Hence, you receive the recommendation and
{% elif player.rel_decision == 0 %} not receive the recommendation. Hence, you do not receive the recommendation and
{% endif %}
{% if player.WTP_cost > 0 %} pay the cost of {{ player.WTP_cost | to0}} points in each round.
{% elif player.WTP_cost == 0 %} you have to pay no cost.
{% endif %}
{% endif %}