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

You planted cover crops on {{player.acres_planted_individual}} acres. Your total cost of planting cover crops was {{player.cc_cost_total}}.

{% if group.total_acres >= Constants.cc_threshold_acres %}

The total number of acres planted with cover crops for your group was {{group.total_acres}}, which is enough for all farmers in the group to receive the cover crop premium for their planted acres.

{% if player.acres_planted_individual > 0 %}

You received {{player.profit_cc_acres_bonus}} per acre planted with cover crops.

{% endif %} {% if player.acres_planted_individual < 100 %}

Your profit for acres not planted with cover crops was {{Constants.per_acre_profit}} per acre.

{% endif %}

The total profit for your {{Constants.acre_endowment}} acres is {{player.payoff_bonus}}.

{% else %}

The total number of acres planted with cover crops for your group was {{group.total_acres}}, which is not enough for all farmers in the group to receive the cover crop premium for their planted acres.

{% if player.acres_planted_individual > 0 %}

You received {{player.profit_cc_acres_no_bonus}} per acre planted with cover crops.

{% endif %} {% if player.acres_planted_individual < 100 %}

Your profit for acres not planted with cover crops was {{Constants.per_acre_profit}} per acre.

{% endif %}

The total profit for your {{Constants.acre_endowment}} acres is {{player.payoff_no_bonus}}.

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