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

Did you decide to request a grade change? {{ player.request }} .

{% if player.request == 'Yes' %} {% if player.offer_accepted == 'Increase' %}

The Instructor decided to Increase your grade.

Your final payoff for this round is {{player.payoff}}.

{% elif player.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 and your payoff is {{player.payoff}}.

{% endif %} {% next_button %} {% endblock %}