{% extends "global/Page.html" %} {% load otree static %} {% block head %} {% endblock %} {% block content %}

You are a farmer deciding which orchard to plant, with the choice affecting your bonus payment for this experiment. You can choose between a Mango orchard and an Avocado orchard. Your bonus payment will be the yield on a £1 investment in the orchard you choose. Below you can see two grids — one for each orchard type. Each cell in a grid represents a farmer who planted that orchard. Click any cell to reveal the yield (in pence) that farmer earned per £1 invested. Type Mango or Avocado in the box below to select the orchard you want to plant and press Continue.

{{ formfield_errors 'chosen_initials' }}
(type Mango or Avocado)
{% if zone_order == 'AB' %}
Mango
{% for index, pay, tag in values_with_indices_a %}
{{ pay }}
{% endfor %}
Avocado
{% for index, pay, tag in values_with_indices_b %}
{{ pay }}
{% endfor %}
{% else %}
Avocado
{% for index, pay, tag in values_with_indices_b %}
{{ pay }}
{% endfor %}
Mango
{% for index, pay, tag in values_with_indices_a %}
{{ pay }}
{% endfor %}
{% endif %}
{% endblock %}