{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
{% if participant.vars.correct_confirmatory_questions_PartA %}
Your answers were correct.
{# if answers are not correct#}
{% else %}
Sorry.
{% endif %}
{% endblock %}
{% block content %}
{% if participant.vars.correct_confirmatory_questions_PartA %}
You can now proceed to the experiment!
{# if answers are not correct#}
{% else %}
Unfortunately, your answers were not entirely correct.
{% endif %}
{% next_button %}
{% endblock %}