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

You got {{ orig_correct }} questions graded as correct, your payoff is hence ${{ orig_payoff3 }} and the bonus is ${{ orig_bonus3 }}.
Your current total compensation is ${{ orig_comp3 }}.

You may request a regrade. In the case of a regrade, the THREE questions that were randomly assigned a score would be regraded accurately. If you request a regrade, the payoff, bonus, and total compensation associated with your potential regraded outcomes are as follows:

{% if possible0 >= 0 and possible0 <= 20 %} {% endif %} {% if possible1 >= 0 and possible1 <= 20 %} {% endif %} {% if possible2 >= 0 and possible2 <= 20 %} {% endif %} {% if possible3 >= 0 and possible3 <= 20 %} {% endif %} {% if possible4 >= 0 and possible4 <= 20 %} {% endif %} {% if possible5 >= 0 and possible5 <= 20 %} {% endif %} {% if possible6 >= 0 and possible6 <= 20 %} {% endif %}
Number of correct answers Payoff Bonus Total Compensation
{{ possible0 }} {{ orig_payoff0 }} {{ orig_bonus0}} {{ orig_comp0}}
{{ possible1 }} {{ orig_payoff1 }} {{ orig_bonus1}} {{ orig_comp1}}
{{ possible2 }} {{ orig_payoff2 }} {{ orig_bonus2}} {{ orig_comp2}}
{{ possible3 }} {{ orig_payoff3 }} {{ orig_bonus3}} {{ orig_comp3}}
{{ possible4 }} {{ orig_payoff4 }} {{ orig_bonus4}} {{ orig_comp4}}
{{ possible5 }} {{ orig_payoff5 }} {{ orig_bonus5}} {{ orig_comp5}}
{{ possible6 }} {{ orig_payoff6 }} {{ orig_bonus6}} {{ orig_comp6}}

However, in order to make a regrade request, you must pay a cost. There are 10 possible values for the cost of asking for a regrade, ranging from having to pay $3.5 to getting paid $1.

For EACH of the following costs of regrade, you will have to choose whether you would like to request a regrade or not.

If you choose "Request Regrade", you will pay the associated cost (which will be deducted from your compensation) and the three randomly chosen questions will be regraded accurately. Remember, there is a chance that the original grade is correct and your final grade will not be changed. But there is also a chance that the regraded result is better or worse than the initial grade.

If you choose "Do Not Request Regrade", the score above will be your final score, and you will be compensated based on that.

After you have made a choice for each and all the scenarios, ONE of them will be randomly chosen to determine your cost and the final grade.

{% for field in form %} {% for choice in field %} {% endfor %} {% endfor %}
Scenario Your Choice
{{ field.label }}{{ choice }}
{% next_button %} {% endblock %}