{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results {% endblock %} {% block content %}
{% if player.id_in_group == 1 %} In this round, you charged price {{group.firm_price}} for the product. You invested effort {{ group.firm_effort }} into developing the product. Customer invested effort {{group.student_effort}} into developing the product. {% if group.student_buy %} Customer bought the product.
Your payoff is therefore {{group.firm_price}} (Price) - 0.01*{{ group.firm_effort }}*{{ group.firm_effort }} (Cost of your effort) ={{ player.payoff }}.
{% else %} Customer didn't buy the product.Your payoff is therefore - 0.01*{{ group.firm_effort }}*{{ group.firm_effort }} (Cost of your effort)={{ player.payoff }}.
{% endif %} {% else %} In this round, Firm wanted to charge price {{group.firm_price}} for the product. Firm invested effort {{ group.firm_effort }} into developing the product. You invested effort {{group.student_effort}} into developing the product. {% if group.student_buy %} You bought the product.Your payoff is therefore {{ group.firm_effort }} (Firm's effort)+ {{group.student_effort}} (Your effort) - {{group.firm_price}} (Price) - 0.01*{{ group.student_effort }}*{{ group.student_effort }} (Cost of your effort) plus a random number {{player.random_n}}={{ player.payoff }}.
{% else %} You didn't buy the product.Your payoff is therefore - 0.01*{{ group.student_effort }}*{{ group.student_effort }} (Cost of effort) ={{ player.payoff }}.
{% endif %} {% endif %} {% next_button %}