{% extends "global/Page.html" %} {% load otree %} {% block title %}
Round {{ subsession.round_number }} of {{ Constants.num_rounds }}
{% endblock %} {% block content %} {% if subsession.round_number == 1 %}

This is the practice round. This game can be solved in {{ min_num_of_moves }} moves.
You are given {{ endowment }} Euro at the start of the game.
{{ per_10sec_ins }} Euro will be deducted after every 10 seconds in this round.
{{ per_move_ins }} Euro will be deducted for every move made.
Maximum amount of money you can make from this round is 10 Euro.
Please think carefully before making moves.

{% endif %} {% if subsession.round_number > 1 %} {% include Constants.instructions_template %} {% endif %}
{% next_button %}
{% endblock %}