{% extends "global/Page.html" %} {% load otree static %} {% block title %} Solve the Problem or Continue {% endblock %} {% block content %}

You have selected {% if player.problem != None %} cell : {{problem_no }}. {% else %} {%if player.row_problem != None %} column : {{problem_no}}. {% else %} {% if player.col_problem != None %} row : {{ problem_no }}. {% endif %} {% endif %} {% endif %} If you do not want to solve the problem you can leave the box blank for now. Later you can again come back and solve the problem.

{% if player.problem != None %}

Solve: {{prob}}

The cutoff value is {{rand_cutoff}}.

{% else %} {% if player.row_problem != None %}

The fifth digit represents the number of ones in the column:

{{row_avg}} {% else %} {% if player.col_problem != None %}

The seventh digit represents the number of ones in the row:

{{col_avg}} {% endif %} {% endif %} {% endif %}

{% formfield player.solution %}

{% if player.treat_type == 1 %} {% if player.problem != None %} {% if player.reveal_cell_total < Constants.cell_reveal %}

{% else %}

You have already revealed {{Constants.cell_reveal}} cells. No further cell can be revealed.

{% endif %} {% endif %} {% endif %} {% if player.treat_type == 2 %} {% if player.row_problem != None or player.col_problem != None %} {% if player.reveal_avg_total < Constants.avg_reveal %}

{% else %}

You have already revealed {{Constants.avg_reveal}} averages. No further average can be revealed.

{% endif %} {% endif %} {% endif %} {% if player.treat_type == 3 %} {% if player.reveal_both_total < Constants.both_reveal %}

{% else %}

You have already revealed {{Constants.both_reveal}} cells or averages. No further cell or average can be revealed.

{% endif %} {% endif %}
{{ form.reveal_cell.errors }} {{ form.reveal_avg.errors }} {{ form.reveal_both.errors }} {% endblock %} {% block styles %} {% endblock %} {% block scripts %} {% endblock %}