{% load otree static %} {% block content %}

Your work today:

You have been assigned to solve {{player.num_tasks_additional}} additional sequences.

Thus, in total, you need to solve {{player.num_tasks_total}} sequences.

Last week, you have already solved {{player.num_completed}} of these.

Therefore, today you still need to complete {{player.num_todo}} sequences.

Click "next" to start working on the tasks.


You have to transcribe sequences of {{ num_letters }} numbers into sequences of {{ num_letters }} letters. To do so, an input field is displayed below the sequence of numbers. Here is an example:

{{ number_string }}

You will transcribe the sequence of numbers with the help of a coding key, that assigns a specific letter to each number (see the example below):

{% for num in display_numbers %} {% endfor %} {% for char in display_chars %} {% endfor %}
Number:{{ num }}
Letter:{{ char }}

Your task is to find the corresponding letter for each number and enter the resulting sequence of letters in the input field. Do not enter any spaces between the letters in the input field. Note also, the input field is not case-sensitive. That is, it does not matter whether you enter for example “k” or “K”.

In the above example you are seeing the sequence {{ number_string }}. Given this coding key, the solution is the letter sequence {{ solution }}. For this example, we have entered this solution for you in the input field.

{{ number_string }}

Once you submit a correct code, the computer will prompt you with another sequence.

In case you submit an incorrect code, you will be notified by the computer and have to redo the sequence. To complete the task, you have to transcribe a certain number of sequences. From sequence to sequence, both the number sequence and the coding key change.


{% next_button %}

{% endblock %}