{% extends "global/Page.html" %} {% load staticfiles otree %} {% block title %} {% if subsession.round_number == 3 %} Welcome to Part 2 {% elif subsession.round_number < 29 %} Part 2: Round {{task_number}} {% elif subsession.round_number == 29 %} Part 3 Block 3 {% else %} Part 4 Block 2: Round {{round_num}} Step 3 {% endif %} {% endblock %} {% block content %}
{% if subsession.round_number == 3 %}

The first task is Task {{player.active_task}}: {% if player.active_task < 5%} {{title | slice:"13" }} {{title | slice:"13:14" }} {{title | slice:"14:" }}{% else %} {{title | slice:"7" }} {{title | slice:"7:15" }} {{title | slice:"15:" }} {% endif %}

{% elif subsession.round_number < 29 %}

The next task is Task {{player.active_task}}: {% if player.active_task < 5%} {{title | slice:"13" }} {{title | slice:"13:14" }} {{title | slice:"14:" }}{% else %} {{title | slice:"7" }} {{title | slice:"7:15" }} {{title | slice:"15:" }} {% endif %}

{% elif subsession.round_number == 29 %}

Computer randomly selected Round {{comp_selected}}

In that round the computer draw ({{comp_decission}}) was {% if your_decission < comp_decission%} higher {% else %} lower {% endif %} than your minimum required rate ({{your_decission|floatformat:2 }})

So you will work on Task {{player.active_task}}: {% if player.active_task < 5%} {{title | slice:"13" }} {{title | slice:"13:14" }} {{title | slice:"14:" }}{% else %} {{title | slice:"7" }} {{title | slice:"7:15" }} {{title | slice:"15:" }} {% endif %} and get {% if your_decission < comp_decission%} $ {{comp_decission|floatformat:2}} {% else %} $ 0.50 {% endif %} per correct answer

{% elif subsession.round_number > 29 %}

Now you will work on Task {{player.active_task}}: {% if player.active_task < 5%} {{title | slice:"13" }} {{title | slice:"13:14" }} {{title | slice:"14:" }}{% else %} {{title | slice:"7" }} {{title | slice:"7:15" }} {{title | slice:"15:" }} {% endif %}, {{ who_is_more }}

{% endif %}
{% next_button %} {% include "treatment_1/type.html" %} {% endblock %}