{% extends "global/Page.html" %} {% load otree %} {% block title %} Matrix {{ matrix_number }} of {{ tasks_for_current_session }} ({{ hard_tasks }} large matrices, {{ normal_tasks }} small matrices) {% endblock %} {% block content%} {% if subsession.round_number > 1 %}

{% if previous_correct %} Correct! {% else %} Wrong answer. Try again with this matrix. {% endif %}

{% endif %}

Number of correct answers so far: {{ correct_guesses }}/{{ tasks_for_current_session }}

Number of wrong guesses so far: {{ wrong_guesses }}/{{ tasks_for_current_session }}

Count the cells containing exactly {{ search_character }} {% if search_character == '!' %} (Do nout count cells with '!!'.) {% elif search_character == '?' %} (Do not count cells with '??'.) {% endif %}



{% formfield player.solution_guess label="Number you counted:" %} {% if session.config.DEBUG_MODE_LM %} Matrix id is {{ matrix_id }}, the correct answer is {{ solution }}. {% endif %} {% next_button %} {% endblock %}