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

In this game your task is to find in a grid a pair of 2 numbers which, when added together, give {{ Constants.grit_total }}.

There are two types of grids, one easy and one difficult (example below).

Easy grid example
{% for row in session.vars.table_easy_example %} {% for col in row %} {% endfor %} {% endfor %}
{{ col }}
Example of a difficult grid
{% for row in session.vars.table_difficult_example %} {% for col in row %} {% endfor %} {% endfor %}
{{ col }}

You will have one minute to find {{ Constants.grit_num_correct_for_bonus }} pairs of numbers that add up to {{ Constants.grit_total }}. However, you must first choose the grid you will use.
If you choose the hard grid and pass you will win {{ Constants.grit_bonus_high|floatformat:"-1" }} credits.
If you choose the easy grid and pass you will win {{ Constants.grit_bonus_low|floatformat:"-1" }} credits.

If you can't find the {{ Constants.grit_num_correct_for_bonus }} pairs of numbers which are added to {{ Constants.grit_total }}, you don't get anything.

{% formfields %}

Once you have confirmed your choice by pressing the button start, you will have {{ Constants.grit_time_for_task }} minute to find {{ Constants.grit_num_correct_for_bonus }} pairs that add to {{ Constants.grit_total }}.

{% endblock %}