{% extends "global/Page.html" %} {% load otree static %} {% block title %} Decoding task {% endblock %} {% block content %}
In this task you should translate a sequence of numbers into a series of letters from the English alphabet. Below you can see (1) a sequence of NUMBERS (2) a KEY indicating which LETTER represents each NUMBER (3) a text box in which the letter solution should be typed. In each task a new sequence of numbers will appear along with a new key of number to letter relationships.
{% for i,j in task %} {% endfor %}
Letter: Key:
{{ j }} {{ i }}
Task to solve:

{{ question }}

Number of correct tasks: {{ player.num_correct }}
Number of incorrect tasks: {{ player.num_incorrect }}
{% endblock %} {% block scripts %} {% include 'includes/work_channel.html' %} {% endblock %} {% block styles %} {% endblock %}