{% extends "global/Page.html" %} {% load otree %} {% block title %} Results {% endblock %} {% block content %} {% if player.id_in_group == 1 %}

You are the Student. You answered {{ questions_correct }} out of {{ Constants.num_rounds }} questions correctly. You made {{ num_requests }} regrade requests.

Initial grade showed that you answered {{ init_correct }} out of {{ Constants.num_rounds }} questions correctly.

Final grade showed that you answered {{ fn_correct }} out of {{ Constants.num_rounds }} questions correctly. Your payoff is .

{% for p in group_in_all_rounds %} {% endfor %}
Question Your answer Correct answer Answered correctly? Initial grade Regrade requested? Regrade decision? Final grade
{{ p.question }} {{ p.submitted_answer }} {{ p.solution }} {{ p.is_correct }} {{ p.init_grading }} {{ p.request }} {{ p.regrade }} {{ p.fn_grading}}
{% else %}

You are the Instructor. You graded {{ fngrade_correct }} out of {{ Constants.num_rounds }} questions correctly. Your payoff is .

Initial grade showed that you graded {{ initgrade_correct }} out of {{ Constants.num_rounds }} questions correctly.

Final grade showed that you answered {{ fngrade_correct }} out of {{ Constants.num_rounds }} questions correctly.

{% for p in group_in_all_rounds %} {% endfor %}
Question Student answer Correct answer Answered correctly? Initial grade Initial grading correct? Regrade requested? Regrade decision? Final grade Final grading correct?
{{ p.question }} {{ p.submitted_answer }} {{ p.solution }} {{ p.is_correct }} {{ p.init_grading }} {{ p.init_right }} {{ p.request }} {{ p.regrade }} {{ p.fn_grading }} {{ p.fn_right }}
{% endif %} {% next_button %} {% endblock %}