{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
Questions not answered correctly
{% endblock %}
{% block content %}
{% if player.round_number < C.num_attention_check_tries %}
You did not answer the questions correctly.
You get {{ C.num_attention_check_tries }} attempts to answer the questions correctly
so you will now have one more chance to read the instructions again.
{% next_button %}
{% else %}
You did not answer the questions correctly {{ C.num_attention_check_tries }} times.
You cannot continue with the experiment.
Please close the experiment now.
{% endif %}
{% endblock %}