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

{% if player.id_in_group == 1 %} You are the Student. Your original grade was {{player.grade}} with an initial payoff of {{ player.endowment }} dollars. Did you decide to request a grade change? {{ group.request }} . {% if group.request == 'Yes' %} {% if group.offer_accepted == 'Increase' %} The Instructor decided to Increase your grade. Your final payoff for this round is {{player.payoff}}. {% elif group.offer_accepted == 'Decrease' %} The Instructor decided to Decrease your grade. Your final payoff for this round is {{player.payoff}}. {% else %} The Instructor decided to make No Change to your grade. Your final payoff for this round is {{player.payoff}}. {% endif %} {% else %} Your grade was finalized as the initial grade at {{player.payoff}}. {% endif %} {% else %} Did the Student request for a grade change? {{ group.request }}. {% if group.request == 'Yes' %} {% if group.offer_accepted == 'No Change' %} You decided to make No Change to the Student's grade. Your payoff for this round is unchanged and is {{player.payoff}}. {% else %} You decide to change the Student's grade. Your payoff for this round is reduced by 5 dollars and your payoff {{ player.payoff }}. {% endif %} {% else %} The Student accepted the initial grade. Your payoff for this round is unchanged and is {{ player.payoff}}. {% endif %} {% endif %}

{% next_button %} {% endblock %}