{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
Results
{% endblock %}
{% block content %}
{{if player.Comprehension1 == False}}
You have failed the comprehension check, as at least one of your answers was wrong. Therefore, you won't participate in the main experiment and receive only the participation fee.
{{elif player.Comprehension2 == True}}
You have failed the comprehension check, as at least one of your answers was wrong. Therefore, you won't participate in the main experiment and receive only the participation fee.
{{else}}
For your payoff Decision {{player.sl1}} was drawn.
{{if player.sl1 == 4}}
Following that Decision 4 was drawn, in Decision 4 the choice {{player.sl2}} was drawn.
{{endif}}
{{endif}}
This resulted in the payoff {{player.payoff}}
{% next_button %}
{% endblock %}